-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 727 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 727 Bytes
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
{
"name": "backend",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "nodemon ./bin/www",
"heroku-postbuild": "cd frontend && npm install && npm run build"
},
"dependencies": {
"connect-mongo": "^4.4.1",
"cookie-parser": "~1.4.4",
"crypto-js": "^4.0.0",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-session": "^1.17.1",
"mongodb": "^3.6.5",
"morgan": "~1.9.1",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.23.1",
"prettier": "^2.2.1"
}
}