-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.62 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "threejs-journey",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint --fix",
"format": "prettier --write ./**/*.{client.ts,js,astro}",
"prepare": "husky"
},
"dependencies": {
"@astrojs/netlify": "^5.2.0",
"@astrojs/svelte": "^5.4.0",
"@dimforge/rapier3d-compat": "^0.13.1",
"@fontsource/b612-mono": "^5.0.19",
"@threlte/core": "^7.3.0",
"@threlte/extras": "^8.11.2",
"@threlte/rapier": "^2.0.0",
"@xstate/svelte": "^3.0.3",
"animejs": "^3.2.2",
"astro": "^4.7.1",
"lil-gui": "^0.19.2",
"postprocessing": "^6.35.4",
"stats.js": "^0.17.0",
"svelte": "4.2.15",
"svelte-tweakpane-ui": "^1.2.4",
"three": "^0.164.1",
"three-bvh-csg": "^0.0.16",
"three-custom-shader-material": "^5.4.0",
"three-mesh-bvh": "^0.7.4",
"typescript": "^5.4.5",
"xstate": "^5.13.0"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/animejs": "^3.1.12",
"@types/three": "^0.164.0",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-astro": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"typescript-eslint": "^7.8.0",
"vite-plugin-glsl": "^1.3.0",
"vite-plugin-wasm": "^3.3.0"
},
"lint-staged": {
"*.{astro,js,ts}": [
"prettier --write",
"eslint --fix"
]
}
}