-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "sippo-vroidsdk-test2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fmt": "prettier --write '**/*.{ts,tsx}'"
},
"dependencies": {
"@charcoal-ui/react": "^3.1.0",
"@charcoal-ui/styled": "^3.1.1",
"@gltf-transform/core": "^3.4.8",
"@pixiv/three-vrm": "^3.1.4",
"@pixiv/three-vrm-animation": "^3.1.4",
"@react-three/drei": "^9.78.1",
"@react-three/fiber": "^8.13.4",
"@types/node": "^22.7.0",
"@types/react": "^18.2.9",
"@types/three": "^0.153.0",
"eslint": "^8.42.0",
"eslint-config-next": "13.4.4",
"next": "13.4.4",
"next-auth": "3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-use": "^17.4.0",
"styled-components": "^6.0.5",
"three": "^0.154.0",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "always",
"trailingComma": "all",
"printWidth": 120
},
"devDependencies": {
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"webpack-bundle-analyzer": "^4.9.0"
}
}