-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.32 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": "my-app",
"version": "0.1.0",
"private": true,
"main": "server.js",
"dependencies": {
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.3.1",
"concurrently": "^4.1.0",
"config": "^3.0.1",
"express": "^4.16.4",
"google-map-react": "^1.1.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.4.19",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-icons": "^3.6.1",
"react-pure-lifecycle": "^3.0.0",
"react-redux": "^6.0.1",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.8",
"reactstrap": "^7.1.0",
"react-to-print": "^2.1.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "concurrently \"npm run node\" \"npm client\"",
"client": "react-scripts start",
"node": "node server.js",
"server": "nodemon server.js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev": "concurrently \"npm run server\" \"npm start\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install && npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"nodemon": "^1.18.10"
}
}