-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "nicest-shrink-back",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"start-dev": "nodemon src -q",
"test": "jest --passWithNoTests",
"test-watch": "jest --watchAll",
"test-coverage": "jest --watchAll --coverage",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.4.1",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"jest": "^27.5.1",
"nodemon": "^2.0.15"
},
"dependencies": {
"bcrypt": "^5.0.1",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"debug": "^4.3.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"helmet": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"mockgoose": "^8.0.4",
"mongodb": "^4.4.1",
"mongodb-memory-server": "^8.4.0",
"mongoose": "^6.2.4",
"morgan": "^1.10.0",
"supertest": "^6.2.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js",
"!src/index.js",
"!src/server/serverUp.js",
"!src/server/index.js",
"!src/database/index.js"
],
"testEnvironment": "node"
}
}