-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.64 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
{
"name": "time-pilot",
"private": true,
"version": "32.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && npm run build:storybook && node scripts/prune-release-assets.mjs",
"start": "node server/high-score-server.mjs",
"preview": "vite preview",
"api": "node server/high-score-server.mjs",
"typecheck": "tsc --noEmit --noImplicitAny true",
"test": "vitest run",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build -o dist/stories",
"precommit:staged": "node scripts/pre-commit-staged-checks.mjs",
"version:bump": "node scripts/smart-version-bump.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"arcade-engine": "^2.41.1",
"classnames": "^2.5.1",
"pg": "^8.21.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@storybook/addon-a11y": "^10.3.6",
"@storybook/addon-docs": "^10.3.6",
"@storybook/addon-vitest": "^10.3.6",
"@storybook/react-vite": "^10.3.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "^4.1.6",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"playwright": "^1.60.0",
"sass": "^1.100.0",
"storybook": "^10.3.6",
"typescript": "^5.6.3",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.16",
"vitest": "^4.1.6"
}
}