-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
53 lines (53 loc) · 1.47 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
49
50
51
52
53
{
"name": "oemreactsample",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^1.2.1",
"@material-ui/icons": "^1.1.0",
"apollo-boost": "^0.1.9",
"apollo-cache-inmemory": "^1.2.5",
"apollo-client": "^2.3.5",
"apollo-link": "^1.2.2",
"apollo-link-context": "^1.0.8",
"apollo-link-error": "^1.1.0",
"apollo-link-http": "^1.5.4",
"body-parser": "^1.17.2",
"dotenv": "^10.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"lodash": "^4.17.13",
"morgan": "^1.9.0",
"node-fetch": "^2.1.2",
"react": "^16.4.0",
"react-apollo": "^2.1.5",
"react-dom": "^16.4.0",
"react-router-dom": "^4.3.1",
"react-scripts": "3.1.2",
"uuid": "^3.2.1"
},
"scripts": {
"start": "concurrently \"npm run api\" \"npm run start-client\"",
"start-client": "HTTPS=true react-scripts start",
"api": "BABEL_DISABLE_CACHE=1 nodemon --exec babel-node -r dotenv/config server/server.js --presets @babel/preset-env",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/node": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"concurrently": "^6.2.0",
"nodemon": "^1.19.4",
"request-debug": "^0.2.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}