-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "insights-dashboard-sample",
"version": "0.1.1",
"private": false,
"dependencies": {
"@date-io/moment": "^1.3.13",
"@material-ui/core": "^4.4.1",
"@material-ui/pickers": "^3.2.10",
"@types/react": "^16.9.2",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link-context": "^1.0.20",
"apollo-link-http": "^1.5.15",
"axios": "^0.21.1",
"chart.js": "^2.8.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"graphql": "^14.5.4",
"graphql-tag": "^2.10.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"minimist": ">=1.2.3",
"moment": "^2.29.1",
"react": "^16.9.0",
"react-apollo": "^3.0.1",
"react-chartjs-2": "^2.7.6",
"react-dom": "^16.9.0",
"react-scripts": "^4.0.3",
"url-join": "^4.0.1",
"uuid": "^9.0.0"
},
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "node server.js",
"client": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"concurrently": "^4.0.1"
}
}