-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
84 lines (84 loc) · 2.91 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "abacus-frontend",
"private": true,
"version": "0.0.1",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "cross-env API_MODE=mock vite",
"dev:server": "vite",
"build": "vite build --config vite-prod.config.ts",
"build:msw": "cross-env API_MODE=mock vite build && cp mockServiceWorker.js dist/",
"lint": "tsc && cross-env ESLINT_ENV=production ESLINT_USE_FLAT_CONFIG=false eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --ignore-unknown --write .",
"preview": "vite preview",
"test": "vitest",
"test:e2e": "cross-env LOCAL_CI=true playwright test -c playwright.e2e.config.ts",
"test:e2e-ui": "cross-env LOCAL_CI=true playwright test -c playwright.e2e.config.ts --ui",
"test:e2e-dev": "playwright test -c playwright.e2e.config.ts",
"test:ladle": "playwright test -c playwright.ladle.config.ts",
"ladle": "ladle serve",
"build:ladle": "ladle build",
"start:msw": "cross-env API_MODE=mock vite",
"gen:icons": "node scripts/gen_icons.js",
"gen:openapi": "vite-node ./scripts/gen_openapi_types.ts",
"gen:po": "vite-node scripts/gen_po.js",
"gen:translation-json": "vite-node scripts/gen_translation-json.js",
"serve": "npm run build:msw && npx serve dist"
},
"dependencies": {
"autoprefixer": "^10.4.20",
"postcss": "^8.5.3",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.2.0",
"vite": "^6.2.0"
},
"devDependencies": {
"@codecov/vite-plugin": "^1.9.0",
"@ladle/react": "^5.0.1",
"@playwright/test": "^1.50.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.13.8",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"@vitejs/plugin-react-swc": "^3.8.0",
"@vitest/coverage-v8": "^3.0.7",
"@xstate/graph": "^3.0.2",
"cross-env": "^7.0.3",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"jsdom": "^26.0.0",
"lefthook": "^1.11.2",
"msw": "^2.7.3",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"vite-node": "^3.0.4",
"vitest": "^3.0.4",
"vitest-fail-on-console": "^0.7.1",
"xstate": "^5.19.2"
},
"msw": {
"workerDirectory": [
""
]
}
}