-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 980 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 980 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
{
"name": "backend",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "nodemon index.js",
"test": "jest --testTimeout=10000 --verbose --ci --testResultsProcessor=\"jest-junit\"",
"sample_tests": "jest --testTimeout=10000 --verbose --ci --testResultsProcessor=\"jest-junit\" -- sample.test.js",
"main_tests": "jest --testTimeout=10000 --verbose --ci --testResultsProcessor=\"jest-junit\" -- main.test.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": ".",
"outputName": "xunittest-report.xml",
"uniqueOutputName": "false",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
}
}