-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 854 Bytes
/
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
{
"name": "i-notes",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd i-notes && npm run start",
"client-install": "cd i-notes && npm install",
"server-install": "npm install",
"install-all": "concurrently \"npm run client-install\" \"npm run server-install\"",
"dev": "concurrently \"npm run client\" \"npm run server\"",
"heroku-postbuild": "cd i-notes && npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^7.0.0",
"cors": "^2.8.5",
"dotenv": "^15.0.0",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.9"
}
}