-
Notifications
You must be signed in to change notification settings - Fork 147
/
package.json
38 lines (38 loc) · 1.17 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
{
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"@types/jest": "^29.5.12",
"@types/jest-environment-puppeteer": "^5.0.3",
"@types/jquery": "^3.5.16",
"@types/sortablejs": "^1.3.32",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-puppeteer": "^10.1.0",
"jest-jasmine2": "^29.7.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"prettier": "^3.3.0",
"puppeteer": "^23.1.1",
"sass": "1.77.1",
"ts-jest": "^29.2.0",
"typescript": "^5.7.2"
},
"jest": {
"testRunner": "jest-jasmine2",
"rootDir": "evap/static/ts",
"testMatch": [
"**/tests/unit/**/*.ts",
"**/tests/frontend/**/*.ts"
],
"moduleDirectories": [
"node_modules",
"evap/static/ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globalSetup": "jest-environment-puppeteer/setup",
"globalTeardown": "jest-environment-puppeteer/teardown",
"testEnvironment": "jest-environment-puppeteer",
"resolver": "jest-ts-webcompat-resolver"
}
}