forked from sherryli-qyl/ByteCRMBackend
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 831 Bytes
/
package.json
File metadata and controls
executable file
·36 lines (36 loc) · 831 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
32
33
34
35
36
{
"name": "bytecrm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "pm2 start src/index.js --name ByteCRM",
"poststart": "pm2 log ByteCRM",
"dev": "nodemon src/index.js",
"stop": "pm2 stop ByteCRM",
"debug": "nodemon --inspect src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.1.1",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"mongoose": "^5.10.2",
"morgan": "^1.10.0",
"pm2": "^4.4.1"
},
"devDependencies": {
"faker": "^5.1.0",
"nodemon": "^2.0.4"
}
}