forked from mayacoda/toon-shader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 934 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
{
"name": "simple-threejs-typescript-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"
},
"type": "module",
"dependencies": {
"lil-gui": "^0.18.1",
"three": "^0.151.3"
},
"devDependencies": {
"@types/three": "^0.150.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "2.8.7",
"sass": "^1.62.0",
"typescript": "^5.0.4",
"vite": "^4.2.2",
"vite-plugin-glsl": "^1.1.2"
},
"packageManager": "[email protected]",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}