-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 864 Bytes
/
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
{
"scripts": {
"test": "jest --coverage --noStackTrace --silent"
},
"jest": {
"verbose": false,
"testEnvironment": "jsdom",
"setupFiles": [
"./setup-jest.js"
],
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/app/**",
"!**/assets/**",
"!**/external/**",
"!**/fixtures/**",
"!**/lcov-report/**"
]
},
"type": "module",
"dependencies": {
"express": "^4.17.1",
"global": "^4.4.0",
"jquery": "^3.5.1",
"path": "^0.12.7",
"yarn": "^1.22.22"
},
"devDependencies": {
"@babel/preset-env": "^7.10.4",
"@testing-library/dom": "^7.20.0",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/user-event": "^12.0.11",
"babel-jest": "^26.1.0",
"jest": "^26.1.0",
"jest-environment-jsdom": "^27.5.1",
"jest-html-reporter": "^3.1.3"
}
}