-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "projectmanager",
"version": "1.0.0",
"description": "",
"main": "server.js",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^8.2.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.2",
"nodemon": "^2.0.19"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"client": "npm run start --prefix frontend",
"dev": "concurrently --kill-others \"nodemon server.js\" \"npm run client\" ",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scb4377/project-manager.git"
},
"author": "Stephen Blevins",
"license": "MIT",
"bugs": {
"url": "https://github.com/scb4377/project-manager/issues"
},
"homepage": "https://zappa.stephen-blevins.dev"
}