forked from kiesraad/abacus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.11 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.11 KB
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
85
86
87
88
89
{
"name": "abacus-frontend",
"private": true,
"version": "1.1.0",
"type": "module",
"engines": {
"node": "^22",
"pnpm": "^10",
"npm": "please-use-pnpm"
},
"packageManager": "pnpm@10.26.1",
"scripts": {
"dev": "pnpm check-server && vite",
"dev:msw": "cross-env API_MODE=mock vite",
"build": "vite build --config vite-prod.config.ts",
"build:msw": "cross-env API_MODE=mock vite build && cp mockServiceWorker.js dist/",
"lint": "pnpm lint:biome && pnpm lint:tsc && pnpm lint:eslint",
"lint:biome": "biome check",
"lint:tsc": "tsc",
"lint:eslint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "biome format --write",
"preview": "vite preview",
"test": "vitest",
"test:e2e": "cross-env LOCAL_CI=true RUST_LOG=tower_http-warning playwright test",
"test:e2e-dev": "cross-env RUST_LOG=tower_http-warning playwright test",
"test:e2e-debug": "cross-env DEBUG_DEVELOPMENT=true playwright test --ui",
"test:e2e-ui": "cross-env LOCAL_CI=true playwright test --ui",
"doc:list-routes": "vite-node scripts/list_routes.ts",
"gen:e2e": "cross-env LOCAL_CI=true playwright codegen http://localhost:3000/dev",
"gen:icons": "node scripts/gen_icons.js",
"gen:openapi": "vite-node scripts/gen_openapi.ts",
"gen:po": "vite-node scripts/gen_po.js",
"gen:translation-json": "vite-node scripts/gen_translation-json.js",
"check-server": "vite-node scripts/check_server.js",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build -o dist-storybook"
},
"dependencies": {
"browserslist": "4.28.1",
"lightningcss": "1.30.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-router": "7.10.1",
"vite": "7.3.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@codecov/vite-plugin": "1.9.1",
"@eslint/js": "9.39.2",
"@playwright/test": "1.57.0",
"@storybook/addon-vitest": "10.1.10",
"@storybook/react-vite": "10.1.10",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.1",
"@testing-library/user-event": "14.6.1",
"@types/node": "22.19.3",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.49.0",
"@typescript-eslint/parser": "8.49.0",
"@vitejs/plugin-react-swc": "4.2.2",
"@vitest/browser-playwright": "4.0.16",
"@vitest/coverage-v8": "4.0.16",
"@vitest/expect": "4.0.16",
"@xstate/graph": "3.0.4",
"cross-env": "10.1.0",
"eslint": "9.39.2",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.1",
"eslint-plugin-playwright": "2.4.0",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-storybook": "10.1.10",
"jsdom": "27.3.0",
"lefthook": "2.0.12",
"msw": "2.12.4",
"playwright": "1.57.0",
"storybook": "10.1.10",
"typescript": "5.9.3",
"typescript-eslint": "8.49.0",
"vite-node": "5.2.0",
"vitest": "4.0.16",
"vitest-fail-on-console": "0.10.1",
"xstate": "5.25.0"
},
"msw": {
"workerDirectory": [""]
}
}