-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·54 lines (54 loc) · 1.46 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
54
{
"name": "grouple",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server.js",
"start": "node server.js",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.1",
"concurrently": "^4.0.1",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.2.9",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-modal": "^3.5.1",
"react-popper": "^1.0.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-transition-group": "^2.4.0",
"reactstrap": "^6.4.0",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"socket.io": "^2.1.1",
"validator": "^10.7.0"
},
"devDependencies": {
"nodemon": "^1.18.3"
},
"engines": {
"node": "8.9.4",
"npm": "6.3.0"
}
}