-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
56
{
"name": "dayze",
"version": "1.0.0",
"description": "dayze app",
"main": "./frontend/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"server": "nodemon app.js",
"seed_users": "node seeds/seed_users.js",
"seed_events": "node seeds/seed_events.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=true npm install --prefix frontend && npm run build --prefix frontend"
},
"engines": {
"node": "14.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lxg073000/dayze.git"
},
"keywords": [
"dayze"
],
"author": "Lernard Grigsby, Chris Mann, John Cigale, Raymond Wu",
"license": "ISC",
"bugs": {
"url": "https://github.com/lxg073000/dayze/issues"
},
"homepage": "https://github.com/lxg073000/dayze#readme",
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^6.0.0",
"express": "^4.17.1",
"googleapis": "^39.2.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"mongoose": "^5.12.2",
"mongoose-seed": "^0.6.0",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"validator": "^13.6.0"
},
"devDependencies": {
"sass": "^1.32.8"
}
}