-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "frontend",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"e2e"
]
},
"scripts": {
"build": "pnpm run -r build",
"lint": "eslint . -f checkstyle > lint-result.xml",
"pre-commit": "lint-staged",
"prepare": "husky install",
"start": "pnpm -r --parallel run -r dev",
"test": "pnpm cross-env NODE_OPTIONS='--no-experimental-fetch' TZ=UTC vitest",
"test:ci": "pnpm test -- run --reporter=default --reporter=junit --outputFile.junit=./junit.xml --coverage",
"test:ui": "pnpm test -- --ui --coverage",
"test:report": "pnpm test:ci",
"typescript": "pnpm run -r typescript"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"caniuse-lite": "^1.0.30001651",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-custom": "workspace:*",
"husky": "^7.0.4",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.1",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"browserslist": [
">0.3%",
"last 2 versions",
"not dead",
"Firefox ESR",
"not op_mini all",
"not kaios > 0"
],
"packageManager": "pnpm@9.11.0",
"pnpm": {
"overrides": {
"intl-messageformat": "10.3.5",
"@cypress/request@<=2.88.12": ">=3.0.0",
"get-func-name@<2.0.1": ">=2.0.1",
"graphql@>=16.3.0 <16.8.1": ">=16.8.1",
"tough-cookie@<4.1.3": ">=4.1.3",
"@babel/traverse@<7.23.2": ">=7.23.2",
"@adobe/css-tools@<4.3.2": ">=4.3.2",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"follow-redirects@<1.15.4": ">=1.15.4"
},
"patchedDependencies": {
"focus-lock@1.0.0": "patches/focus-lock@1.0.0.patch",
"@inera/ids-core@4.10.0": "patches/@inera__ids-core@4.10.0.patch"
}
}
}