-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 973 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
37
38
39
40
41
42
43
{
"repository": "threejs-101",
"license": "MIT",
"scripts": {
"dev": "vite serve --host",
"build": "vite build",
"preview": "vite preview",
"deploy": "vercel --prod",
"format": "prettier --write \"sources/**/*.js\"",
"pre-commit": "lint-staged",
"pre-push": "npm run format"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit",
"pre-push": "npm run pre-push"
}
},
"dependencies": {
"gsap": "^3.12.2",
"lil-gui": "^0.16.1",
"lucide": "^0.263.0",
"stats.js": "^0.17.0",
"stylus": "^0.58.1",
"three": "^0.141.0",
"tweakpane": "^3.1.10",
"vite": "^2.9.12",
"vite-plugin-glsl": "^0.1.2"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"husky": "^8.0.3",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"tailwindcss": "^3.3.3"
}
}