-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "cellural-automata-tycoon",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./server/app.js",
"server": "nodemon ./server/app.js",
"client": "npm run start --prefix client",
"client:install": "npm install --prefix client",
"client:build": "npm run build --prefix client",
"heroku-postbuild": "npm run client:install && npm run client:build",
"dev": "cross-env NODE_ENV=development concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/MoophHD/cellural-automata-tycoon.git"
},
"keywords": [
"react",
"mern"
],
"author": "Danila Sizykh",
"license": "ISC",
"bugs": {
"url": "https://github.com/MoophHD/cellural-automata-tycoon/issues"
},
"homepage": "https://github.com/MoophHD/cellural-automata-tycoon#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-session": "^1.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"immer": "^7.0.8",
"mongoose": "^5.9.27",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"shortid": "^2.2.15"
},
"devDependencies": {
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"nodemon": "^2.0.4"
},
"engines": {
"node": "12.x"
}
}