-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"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": {
"@tensorflow/tfjs": "^4.17.0",
"lil-gui": "^0.18.2",
"three": "^0.157.0"
},
"devDependencies": {
"@types/three": "^0.156.0",
"cannon-es": "^0.20.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",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0"
},
"packageManager": "yarn@3.2.1",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}