-
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) · 802 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 802 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": "message",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "Ahmad Berahman",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"kavenegar": "^1.1.4",
"mongodb": "^3.5.5",
"mongoose": "^5.9.7",
"validator": "^13.0.0"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"jest": "^25.3.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
},
"scripts": {
"start": "node src/index.js",
"dev": "env-cmd -f ./config/dev.env nodemon src/index.js",
"test": "env-cmd -f ./config/test.env jest --watchAll --runInBand"
},
"jest": {
"testEnvironment": "node"
}
}