-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "Typin_Strikin_Robots",
"version": "1.0.0",
"description": "Rock em Sock em Robots but with a typing twist",
"main": "app.js",
"scripts": {
"start": "node app.js",
"server": "nodemon app.js",
"server:debug": "nodemon --inspect app.js",
"debug": "node --inspect app.js",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"dev:debug": "concurrently \"npm run server:debug\" \"npm run frontend\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.1.1",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.15",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "^3.0.1",
"socket.io": "^2.2.0",
"validator": "^10.9.0"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}