This repository was archived by the owner on Apr 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.4 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.4 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
67
68
69
70
71
72
73
74
75
{
"name": "forgespace-web",
"version": "0.8.0",
"private": true,
"scripts": {
"dev": "next dev -p 5000 -H 0.0.0.0",
"dev:docker": "next dev -H 0.0.0.0",
"build": "NODE_ENV=production next build --webpack",
"start": "next start -p 5000 -H 0.0.0.0",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"ads:google:prepublish": "bash scripts/google-ads-prepublish.sh",
"ads:google:checkpoint": "node scripts/google-ads-checkpoint.mjs",
"ads:google:diagnostics": "node scripts/google-ads-diagnostics.mjs",
"ads:google:handoff": "node scripts/google-ads-handoff.mjs",
"ads:google:sync-issue": "node scripts/google-ads-sync-issue.mjs",
"ads:google:publish-rsa": "node scripts/google-ads-publish-rsa.mjs",
"ads:google:publish-keywords": "node scripts/google-ads-publish-keywords.mjs",
"ads:google:generate-upload": "node scripts/google-ads-generate-upload.mjs",
"startups:status": "bash scripts/startup-programs-status.sh",
"check:cycles": "madge --circular --extensions ts,tsx src/",
"knip": "knip",
"analyze": "ANALYZE=true npm run build",
"prepare": "husky"
},
"dependencies": {
"@react-three/fiber": "^9.5.0",
"lucide-react": "^1.0.1",
"motion": "^12.38.0",
"next": "^16.2.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"three": "^0.183.2"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@next/bundle-analyzer": "^16.2.2",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.183.1",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "^4.1.2",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.2",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"knip": "^6.3.0",
"madge": "^8.0.0",
"playwright": "^1.59.1",
"tailwindcss": "^4",
"typescript": "^6",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=22"
},
"knip": {
"ignore": [
".lighthouserc.js"
]
},
"overrides": {
"axios": ">=0.0.0 <0.30.4 || >0.30.4 <1.14.1 || >=1.14.2"
}
}