forked from e-valuation/EvaP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.07 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
{
"devDependencies": {
"@types/bootstrap": "^5.2.6",
"@types/jest": "^29.5.0",
"@types/jest-environment-puppeteer": "^5.0.3",
"@types/jquery": "^3.5.16",
"@types/sortablejs": "^1.15.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.1",
"jest-environment-puppeteer": "^9.0.0",
"jest-jasmine2": "^29.6.1",
"prettier": "^3.0.0",
"puppeteer": "^20.4.0",
"sass": "1.63.3",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"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"
}
}