-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 854 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
{
"name": "banking_project",
"version": "1.4.1",
"main": "src/index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "nodemon src/index.js",
"test": "jest --runInBand ./test"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.1.0",
"http-status": "^1.4.0",
"joi": "^17.3.0",
"mongoose": "^5.10.9",
"nodemon": "^2.0.12"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"mongodb-memory-server": "^6.0.1",
"supertest": "^6.1.4"
},
"jest": {
"testEnvironment": "node"
}
}