-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 816 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 816 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
31
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node authserver.js",
"test": "echo \"Error: no test specified\" && exit 1",
"client-start": "cd client && npm start",
"install-client": "cd client && npm install",
"heroku-postbuild": "cd client && npm install && npm run build",
"devstart": "concurrently \" nodemon authserver.js\" \" npm run client-start \" "
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}