-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.3 KB
/
package.json
File metadata and controls
108 lines (108 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
101
102
103
104
105
106
107
108
{
"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": {
"start": "vite",
"start:prod": "vite build && 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 --trace on",
"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 && tsc --noEmit -p ./tsconfig.json",
"typecheck:fast": "tsc --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",
"knip": "knip",
"knip:compact": "knip --reporter compact"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@ant-design/icons": "^5.4.0",
"@js-sdsl/priority-queue": "^4.4.0",
"ag-grid-community": "32.1.0",
"ag-grid-react": "32.1.0",
"antd": "5.22.7",
"chroma-js": "^3.1.2",
"fast-sort": "^3.4.0",
"html-to-image": "^1.11.13",
"i18next": "^23.14.0",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.6.1",
"js-yaml": "^4.1.1",
"json-stable-stringify": "^1.1.1",
"node-vibrant": "^3.1.6",
"overlayscrollbars": "^2.11.1",
"overlayscrollbars-react": "^0.5.6",
"partysocket": "^1.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-easy-crop": "^5.4.1",
"react-error-boundary": "^4.0.11",
"react-i18next": "^15.0.1",
"react-plotly.js": "^2.6.0",
"react-selecto": "^1.26.3",
"recharts": "^2.15.1",
"semver": "^7.6.0",
"styled-components": "^6.0.8",
"tinygradient": "^1.1.5",
"zustand": "^4.4.7"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@types/chroma-js": "^2.4.4",
"@types/js-yaml": "^4.0.9",
"@types/json-stable-stringify": "^1.0.36",
"@types/node": "^22.2.0",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.7",
"@types/semver": "^7.7.0",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react-swc": "^3.8.1",
"@webgpu/types": "^0.1.60",
"dprint": "^0.49.1",
"gh-pages": "^6.1.0",
"globals": "^15.0.0",
"i18next-resources-for-ts": "^1.5.0",
"jsdom": "^24.0.0",
"knip": "^5.85.0",
"oxlint": "^1.39.0",
"terser": "^5.27.0",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^3.1.3"
},
"overrides": {
"@jimp/core": {
"phin": "3.7.1"
}
}
}