-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.98 KB
/
package.json
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": "night-city",
"description": "A 3D city built with React Three Fiber and TypeScript",
"private": true,
"version": "0.0.0",
"type": "module",
"author": {
"name": "Cyrus Mobini",
"url": "https://github.com/cyrus2281"
},
"license": "BSD 3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/cyrus2281/night-city.git"
},
"homepage": "https://github.com/cyrus2281/night-city#readme",
"bugs": {
"url": "https://github.com/cyrus2281/night-city/issues"
},
"buyMeACoffee": {
"url": "https://www.buymeacoffee.com/cyrus2281"
},
"scripts": {
"start": "vite --host",
"preview": "vite preview",
"preview:functions": "netlify functions:serve -p 8000",
"build:tsc": "tsc && vite build",
"build:lfs": "git lfs pull",
"build": "npm run build:lfs && npm run build:tsc",
"deploy": "netlify deploy --prod --dir=dist --message=\"Deployed via Netlify CLI\"",
"submodule:install": "git submodule update --init --recursive --force",
"submodule:update": "git submodule update --recursive --remote --force"
},
"dependencies": {
"@netlify/functions": "^1.6.0",
"@react-three/drei": "^9.74.8",
"@react-three/fiber": "^8.9.1",
"@react-three/postprocessing": "^2.7.0",
"@react-three/rapier": "^0.13.2",
"@types/node": "^14.18.63",
"gsap": "^3.12.5",
"joystick-controller": "^1.1.1",
"leva": "^0.9.34",
"postprocessing": "^6.29.3",
"r3f-perf": "^7.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.14.1",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"three": "^0.148.0",
"zustand": "^4.3.3"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"@types/three": "^0.149.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"netlify-cli": "^17.33.3",
"sass": "^1.63.4",
"sass-loader": "^13.3.2",
"typescript": "^4.9.5",
"vite": "^4.1.0"
}
}