-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "challenge-weekend",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"test": "jest",
"scripts": {
"test": "jest --watchAll=false",
"test-coverage": "npm run test -- --coverage --watchAll=false",
"start": "node src",
"start-dev": "nodemon . -q"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@testing-library/react": "^13.2.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.16"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js",
"!src/server/index.js",
"!src/database/index.js"
]
},
"dependencies": {
"@types/jest": "^27.5.1",
"bcrypt": "^5.0.1",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"helmet": "^5.1.0",
"jest": "^28.1.0",
"jsonwebtoken": "^8.5.1",
"mongodb-memory-server": "^8.5.2",
"mongoose": "^6.3.4",
"mongoose-type-url": "^2.1.0",
"morgan": "^1.10.0",
"msw": "^0.41.0",
"supertest": "^6.2.3"
}
}