-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
53 lines (53 loc) · 1.34 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": "instapy-dashboard",
"version": "0.3.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"axios": "^0.18.0",
"braces": "^2.3.2",
"chart.js": "^2.8.0",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"moment": "^2.24.0",
"react": "^16.8.6",
"react-chartkick": "^0.3.0",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-moment": "^0.9.2",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.8",
"react-spinners": "^0.4.8",
"sequelize": "^5.8.5",
"socket.io": "^2.2.0",
"sqlite3": "^4.0.7",
"tail": "^2.0.2",
"typeface-montserrat": "^0.0.54",
"typeface-roboto": "^0.0.54"
},
"scripts": {
"dev": "nodemon src/server.js --ignore __tests__",
"server": "node ./src/services/server.js",
"start": "concurrently --kill-others-on-fail \"react-scripts start\" \"npm run server\"",
"start-alone": "react-scripts start",
"build": "react-scripts build",
"test": "NODE_ENV=test jest",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"nodemon": "^1.19.0",
"supertest": "^3.4.2"
}
}