generated from mayacoda/simple-threejs-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 981 Bytes
/
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
{
"name": "threejs-ts-starter",
"version": "0.1.0",
"description": "Simple starter for Three.js projects with TypeScript",
"main": "index.html",
"repository": "https://github.com/mayacoda/simple-threejs-typescript-starter",
"author": "Maya Nedeljković Batić",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"cleanup": "node ./scripts/cleanup.js",
"prepare": "husky install",
"preinstall": "git submodule update --init --recursive"
},
"type": "module",
"dependencies": {
"lil-gui": "^0.18.2",
"three": "^0.157.0"
},
"devDependencies": {
"@types/three": "^0.156.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "2.8.8",
"sass": "^1.69.0",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-glsl": "^1.1.2"
},
"packageManager": "yarn@3.2.1",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}