-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.07 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
{
"name": "space-cat-games",
"private": true,
"version": "19.0.30",
"type": "module",
"scripts": {
"predev": "node scripts/update-changelog.js && node scripts/generate-games-json.js && node scripts/generate-posts-json.js",
"dev": "vite",
"prebuild": "node scripts/update-changelog.js && node scripts/generate-games-json.js && node scripts/generate-posts-json.js",
"build": "node scripts/build-info.js && vite build",
"postbuild": "mkdir -p dist/api && cp -r public/api/* dist/api/ || true",
"lint": "eslint .",
"preview": "vite preview",
"generate-games": "node scripts/generate-games-json.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"prepare": "husky"
},
"dependencies": {
"@netlify/blobs": "^10.7.8",
"@tailwindcss/vite": "^4.3.2",
"@vercel/speed-insights": "^1.3.1",
"netlify-identity-widget": "^2.0.3",
"node-html-parser": "^7.0.1",
"posthog-js": "^1.372.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-helmet": "^6.1.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.17.0",
"remark-gfm": "^4.0.1"
},
"overrides": {
"@babel/parser": "7.27.7",
"@babel/core": "7.29.6"
},
"devDependencies": {
"@babel/core": "7.29.6",
"@eslint/js": "^9.39.1",
"@tailwindcss/postcss": "^4.3.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/netlify-identity-widget": "^1.9.7",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^27.0.1",
"postcss": "^8.5.19",
"tailwindcss": "^4.3.2",
"ts-jest": "^29.4.6",
"vite": "^8.1.3",
"vitest": "^4.1.10",
"wrangler": "^4.107.1"
}
}