-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.56 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "three-js-journey",
"version": "2.8.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "tsc --project tsconfig.json && vite build --mode production",
"deploy": "vercel --prod",
"test": "tsc --project tsconfig.test.json && vitest run --mode test",
"test:watch": "tsc --project tsconfig.test.json && vitest --ui --mode test",
"test:coverage": "tsc --project tsconfig.test.json && vitest --ui --coverage --mode test",
"test:coverage:watch": "tsc --project tsconfig.test.json && vitest --coverage --ui --mode test",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cannon-es": "^0.20.0",
"gsap": "^3.12.5",
"lil-gui": "^0.20.0",
"three": "^0.175.0",
"three-bvh-csg": "^0.0.17",
"three-custom-shader-material": "^6.3.7"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/vite": "^4.0.6",
"@types/three": "^0.175.0",
"@vitest/coverage-v8": "^3.1.1",
"@vitest/ui": "^3.0.7",
"eslint": "^9.20.1",
"eslint-plugin-import": "^2.31.0",
"globals": "^16.0.0",
"jsdom": "^26.0.0",
"postcss": "^8.4.49",
"rollup-plugin-visualizer": "^5.14.0",
"tailwindcss": "^4.0.0",
"terser": "^5.39.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vite": "^6.1.0",
"vite-plugin-checker": "^0.9.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-glsl": "^1.4.0",
"vite-plugin-restart": "^0.4.1",
"vitest": "^3.0.7"
}
}