generated from d3p1/app-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.9 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
62
63
64
65
66
67
68
{
"name": "@d3p1/three.js-journey",
"version": "1.74.2",
"description": "My journey to Three.js",
"private": true,
"type": "module",
"scripts": {
"lint:code": "eslint --ignore-path .gitignore --ext .js,.ts src",
"lint:code:fix": "npm run lint:code -- --fix",
"format:code": "prettier --ignore-path .gitignore --check src",
"format:code:fix": "npm run format:code -- --write",
"refactor": "npm run format:code:fix && npm run lint:code:fix",
"dev": "vite",
"build": "vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d3p1/three.js-journey.git"
},
"keywords": [
"webgl",
"threejs",
"canvas",
"virtual-reality",
"3d",
"threejs-learning",
"threejs-journey"
],
"author": "C. M. de Picciotto <d3p1@d3p1.dev> (https://d3p1.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/d3p1/three.js-journey/issues"
},
"homepage": "https://github.com/d3p1/three.js-journey#readme",
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@d3p1/commitlint-config": "^1.0.0",
"@vitejs/plugin-react": "4.3",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^8.0.3",
"prettier": "3.0.3",
"vite": "^5.4.8",
"vite-plugin-glsl": "^1.3.0",
"vite-plugin-restart": "^0.4.1"
},
"dependencies": {
"@react-three/drei": "9.108",
"@react-three/fiber": "8.16",
"@react-three/postprocessing": "2.16",
"@react-three/rapier": "1.4",
"cannon-es": "^0.20.0",
"gsap": "3.12",
"leva": "^0.9.34",
"lil-gui": "^0.19.2",
"postprocessing": "6.35",
"r3f-perf": "7.2",
"react": "^18.3.1",
"react-dom": "18.2",
"stats.js": "^0.17.0",
"three": "^0.169",
"three-bvh-csg": "^0.0.16",
"three-custom-shader-material": "5.4",
"zustand": "4.5"
}
}