-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 913 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 913 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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "q1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start" : "node app.js",
"test": "jest"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
],
"reporters": [
"default",
[
"./node_modules/jest-html-reporter",
{
"pageTitle": "Integration Test Report",
"outputPath": "./test-report/index.html",
"includeFailureMsg": true,
"includeConsoleLog": true
}
]
]
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"bcryptjs": "^3.0.2",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.18.0",
"supertest": "^7.1.4"
},
"devDependencies": {
"jest": "^30.1.3",
"jest-html-reporter": "^4.3.0"
}
}