-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 949 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 949 Bytes
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
{
"name": "benchpress",
"private": true,
"version": "2.0.0",
"type": "module",
"allowScripts": [
"esbuild"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "TZ=America/New_York vitest run",
"test:watch": "TZ=America/New_York vitest",
"build-seed": "tsx scripts/build-seed.ts",
"gen-icons": "node scripts/gen-icons.mjs"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"dexie": "^4.0.10",
"dexie-react-hooks": "^1.1.7",
"motion": "^12.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"fake-indexeddb": "^6.2.5",
"tsx": "^4.19.2",
"typescript": "~5.7.2",
"vite": "^6.0.5",
"vite-plugin-pwa": "^0.21.1",
"vitest": "^3.0.0"
}
}