-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.3 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.3 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
90
91
92
93
94
95
96
97
98
99
100
{
"name": "hsr-optimizer",
"version": "1.0.0",
"private": true,
"homepage": "https://fribbels.github.io/hsr-optimizer",
"type": "module",
"packageManager": "npm@10.8.1",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0",
"pnpm": ">=999.0.0",
"yarn": ">=999.0.0"
},
"scripts": {
"postinstall": "patch-package",
"start": "vite",
"start:mobile": "vite --host",
"start:prod": "vite build && vite preview",
"preview": "vite preview",
"build": "vite build",
"lint": "oxlint",
"vitest": "vitest --dir src/lib --no-watch --pool=threads",
"vitest:fast": "vitest --dir src/lib --no-watch --pool=threads --exclude '**/simulations/tests/**/*Orchestrator*'",
"vitest:silent": "vitest --dir src/lib --no-watch --pool=threads --silent",
"vitest:watch": "vitest --dir src/lib --watch",
"test": "npx playwright test --config tests/playwright.config.ts",
"test:generate": "npx playwright codegen localhost:3000/hsr-optimizer",
"test:ui": "npm run test -- --ui",
"test:report": "npx playwright show-report",
"typecheck": "npm run update-resources && tsgo --noEmit -p ./tsconfig.json",
"typecheck:fast": "tsgo --noEmit -p ./tsconfig.fast.json",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"update-resources": "npx i18next-resources-for-ts interface -i ./public/locales/en_US -o ./src/types/resources.d.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@esotericsoftware/spine-webgl": "4.1.23",
"@mantine/core": "^9.0.2",
"@mantine/dropzone": "^9.0.2",
"@mantine/form": "^9.0.2",
"@mantine/hooks": "^9.0.2",
"@mantine/modals": "^9.0.2",
"@mantine/notifications": "^9.0.2",
"@tabler/icons-react": "^3.41.1",
"@zumer/snapdom": "^2.8.0",
"ag-grid-community": "^35.2.1",
"ag-grid-react": "^35.2.1",
"chroma-js": "^3.2.0",
"colorthief": "^3.3.1",
"i18next": "^26.0.4",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-http-backend": "^3.0.5",
"js-yaml": "^4.1.1",
"overlayscrollbars": "^2.15.1",
"overlayscrollbars-react": "^0.5.6",
"partysocket": "^1.1.16",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-easy-crop": "^5.5.7",
"react-error-boundary": "^6.1.1",
"react-i18next": "^16.6.6",
"react-selecto": "^1.26.3",
"recharts": "^3.8.1",
"zustand": "^5.0.11"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/chroma-js": "^3.1.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.19.15",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "^7.0.0-dev.20260414.1",
"@vitejs/plugin-react": "^6.0.1",
"@webgpu/types": "^0.1.69",
"dprint": "^0.54.0",
"gh-pages": "^6.3.0",
"i18next-resources-for-ts": "^2.0.2",
"jsdom": "^29.0.2",
"oxlint": "^1.60.0",
"patch-package": "^8.0.1",
"postcss": "^8.5.12",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"overrides": {
"selecto": {
"@daybrush/utils": "1.13.0",
"framework-utils": "1.1.0"
},
"@esotericsoftware/spine-core": "4.1.23"
}
}