forked from e-valuation/EvaP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1019 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
{
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/jest-environment-puppeteer": "^5.0.0",
"@types/jquery": "^3.5.14",
"@types/puppeteer": "^5.4.5",
"@types/sortablejs": "^1.10.7",
"jest": "^27.5.1",
"jest-environment-puppeteer": "^6.0.3",
"prettier": "^2.6.1",
"puppeteer": "^13.5.1",
"sass": "1.32.13",
"ts-jest": "^27.1.4",
"typescript": "^4.6.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"
}
}