-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 791 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 791 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
{
"name": "smallergames-site",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "bunx --bun vite",
"build": "bunx tsc -b && bunx vite build",
"preview": "bunx vite preview",
"lint": "bunx biome check .",
"format": "bunx biome format .",
"typecheck": "bunx tsc -b",
"check": "bun run typecheck && bun run lint",
"verify:one": "node scripts/verify-one-artifact.mjs"
},
"dependencies": {
"framer-motion": "^11.15.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^25.3.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^5.0.1",
"typescript": "^5.8.3",
"vite": "^6.2.0"
}
}