-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "apollo-test-project",
"version": "1.0.0",
"description": "Project that we'll use for testing during development of performance management library",
"main": "index.js",
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"apollo-boost": "^0.4.9",
"apollo-datasource": "^0.7.1",
"apollo-server": "^2.15.0",
"express": "^4.17.1",
"graphql": "^15.1.0",
"node-sass": "^4.14.1",
"pg": "^8.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"css-loader": "^3.6.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"dev": "concurrently \"export NODE_ENV='development'\" \"webpack-dev-server --open\" \"nodemon ./server/server.js\"",
"build": "export NODE_ENV=production; webpack",
"start": "nodemon run server/server.js "
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsully/apollo-test-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tsully/apollo-test-project/issues"
},
"homepage": "https://github.com/tsully/apollo-test-project#readme"
}