-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.59 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.59 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "cs455",
"version": "1.0.0",
"main": "additionalFunctionality.js",
"scripts": {
"lint": "eslint .",
"test": "jest --coverage",
"coverage": "jest --coverage"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"description": "Website Link : https://notdilbarsl.github.io/",
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/register": "^7.24.6",
"@eslint/js": "^9.9.1",
"@fullhuman/postcss-purgecss": "^6.0.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sonarjs": "^2.0.2",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.0",
"jsdom-global": "^3.0.2",
"mongodb-memory-server": "^10.1.0",
"mongoose": "^8.7.1",
"prettier": "^3.3.3",
"supertest": "^7.0.0"
},
"dependencies": {
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"eslint-plugin-jest": "^28.8.3",
"esm": "^3.2.25",
"express": "^4.21.0",
"node-fetch": "^3.3.2",
"rewire": "^7.0.0",
"util": "^0.12.5"
},
"jest": {
"testEnvironment": "jest-environment-jsdom",
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageReporters": [
"text",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 75,
"lines": 75,
"statements": 75
}
},
"collectCoverageFrom": [
"client/**/*.js",
"!spec/**",
"!**/node_modules/**",
"!eslint.config.js"
]
}
}