-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.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
{
"name": "shellgrounds",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"lint": "eslint .",
"validate": "node bin/shellgrounds.js validate",
"dev:functions": "node scripts/dev-functions.mjs",
"dev:local": "./scripts/start-dev.sh",
"registry": "node scripts/build-registry.mjs",
"prebuild": "node scripts/build-registry.mjs",
"dev:seed": "node scripts/dev-seed.mjs",
"dev:reset": "node scripts/dev-seed.mjs --reset",
"dev:complete": "node scripts/dev-seed.mjs --reset --complete",
"screenshot": "node scripts/screenshot.mjs"
},
"dependencies": {
"@netlify/blobs": "^10.7.13",
"canvas-confetti": "^1.9.4",
"dotenv": "^16.4.7",
"lucide-react": "^1.16.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/canvas-confetti": "^1.9.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^10.9.1",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.11.0",
"playwright": "^1.62.1",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"vite": "^6.1.0",
"vitest": "^3.0.5"
}
}