-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "docker-hello",
"private": true,
"version": "0.0.1",
"description": "Basic hello world application for Node.js",
"author": "Robbie Minshall <[email protected]>",
"jest": {
"verbose": true,
"reporters": [
"default",
"jest-junit"
]
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "./test",
"outputName": "jest-junit.xml",
"uniqueOutputName": "false",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "false"
},
"scripts": {
"start-server": "node --max-http-header-size=65535 app.js testApp",
"stop-server": "killall -SIGINT testApp",
"test-unit": "jest ./test/unit.test.js",
"test-fvt": "jest ./test/fvt.test.js"
},
"dependencies": {
"express": "^4.21.0",
"nconf": "*"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"axios": "^1.7.7"
},
"overrides": {
"cookie": "0.7.2"
}
}