-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 887 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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "coolnodeapp",
"version": "1.0.0",
"description": "node app ",
"main": "index.js",
"scripts": {
"dev": "nodemon -e yaml,js,json index.js",
"start": "pm2 index.js",
"stop": "pm2 delete db-backend",
"test": "mocha --recursive"
},
"repository": {
"type": "git",
"url": ""
},
"author": "",
"license": "ISC",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"@hapi/joi": "^16.1.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"mysql": "^2.17.1",
"promise-mysql": "^4.1.1",
"swagger-jsdoc": "^3.5.0",
"swagger-ui-express": "^4.1.2",
"winston": "^3.2.1",
"pm2":"5.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.2",
"supertest": "^4.0.2",
"nodemon": "^1.17.3"
}
}