-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.26 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
47
48
{
"name": "react-apollo-demo",
"version": "0.1.0",
"private": true,
"dependencies": {
"apollo-cache-inmemory": "^1.1.4",
"apollo-client": "^2.0.4",
"apollo-link-http": "^1.3.1",
"bcrypt-nodejs": "^0.0.3",
"connect-mongo": "^2.0.0",
"express": "^4.16.2",
"express-graphql": "^0.6.11",
"express-session": "^1.15.6",
"graphql": "^0.11.7",
"graphql-tag": "^2.6.0",
"material-ui": "^1.0.0-beta.23",
"material-ui-icons": "^1.0.0-beta.17",
"mongoose": "^4.13.6",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-apollo": "^2.0.4",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"typeface-roboto": "^0.0.45"
},
"scripts": {
"start": "concurrently \"yarn run server:watch\" \"react-scripts start\"",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"server:watch": "nodemon server/server.js"
},
"devDependencies": {
"concurrently": "^3.5.1",
"nodemon": "^1.12.5"
},
"proxy": {
"/graphql": {
"target": "http://localhost:3001/graphql"
}
},
"nodemonConfig": {
"ignore": ["src/*", "public/*"]
}
}