generated from mayacoda/simple-threejs-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.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.17.0",
"three": "^0.146.0"
},
"devDependencies": {
"@types/three": "^0.144.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"sass": "^1.52.3",
"typescript": "^4.7.4",
"vite": "^3.0.3",
"vite-plugin-glsl": "^0.1.5"
},
"packageManager": "[email protected]",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}