-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.57 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
55
{
"name": "catscradle.io",
"version": "1.0.0",
"description": "Play cat's cradle online",
"main": "index.js",
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.7",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"validator": "^10.11.0"
},
"devDependencies": {
"nodemon": "^1.19.0",
"prop-types": "^15.7.2"
},
"scripts": {
"backend": "nodemon --exec babel-node backend/server.js",
"frontend": "npm start --prefix frontend",
"postinstall": "cd frontend && npm install",
"server": "concurrently \"npm run backend\" \"npm run frontend\"",
"start": "node backend/server.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catscradleio/catscradle.io.git"
},
"keywords": [
"cat's",
"cradle",
"online",
"game"
],
"contributors": [
"Yucho Ho <[email protected]> (https://yuchoho.com)",
"Victoria Joh <[email protected]> (https://vhjoh.com)",
"Nhat Do <[email protected]>",
"Demetri Sakellaropoulos <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/catscradleio/catscradle.io/issues"
},
"homepage": "https://github.com/catscradleio/catscradle.io#readme",
"author": ""
}