-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 871 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 871 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": "gozem-package-tracker",
"version": "1.0.0",
"description": "package tracker",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon backend/app.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm start\" \"npm run client\"",
"heroku-postbuild": "cd frontend && npm install && npm run build"
},
"author": "edwin",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"concurrently": "^7.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.16",
"react-icons": "^4.3.1",
"react-router-dom": "^6.3.0",
"socket.io": "^4.5.0"
}
}