-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "server",
"version": "1.0.0",
"description": "backend for forum",
"main": "server.js",
"scripts": {
"test": "mocha --timeout 10000",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build ",
"start": "concurrently \"npm run server\" \"python announcement.py\" \"npm run client\"",
"server": "nodemon server.js",
"client": "cd client && npm start"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"jsonwebtoken": "^8.2.1",
"mongoose": "^5.0.13",
"nodemon": "^1.17.3",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.1",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"concurrently": "^3.5.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"mocha": "^5.0.5"
},
"engines": {
"node": ">=12.17.0",
"npm": ">=6.14.4"
}
}