-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 KB
/
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
{
"name": "app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"postinstall": "lefthook install",
"lint": "biome lint --no-errors-on-unmatched --files-ignore-unknown=true .",
"check": "biome check --no-errors-on-unmatched --files-ignore-unknown=true .",
"format": "biome format --write --no-errors-on-unmatched --files-ignore-unknown=true .",
"fix": "biome check --apply --no-errors-on-unmatched --files-ignore-unknown=true ."
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/types": "^19.0.3",
"@tweakpane/core": "^2.0.3",
"@types/three": "^0.162.0",
"autoprefixer": "^10.4.19",
"lefthook": "^1.6.7",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.1",
"type-fest": "^4.14.0",
"typescript": "^5.4.3",
"vite": "^5.2.6",
"vite-plugin-top-level-await": "^1.4.1",
"vite-tsconfig-paths": "^4.3.2"
},
"dependencies": {
"@biomejs/biome": "^1.6.3",
"camelcase": "^8.0.0",
"camera-controls": "^2.8.3",
"gsap": "^3.12.5",
"three": "^0.162.0",
"tweakpane": "^4.0.3"
},
"trustedDependencies": ["@biomejs/biome"]
}