-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 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
52
53
54
55
56
57
58
59
60
{
"name": "vroid-hub-api-example",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix '{src,types,pages,utils,lib,components}/**/*.ts'",
"fmt": "prettier --write '{src,types,pages,utils,lib,components}/**/*.{ts,tsx}'"
},
"dependencies": {
"@charcoal-ui/react": "^5.10.0",
"@charcoal-ui/styled": "^5.10.0",
"@charcoal-ui/theme": "5.10.0",
"@gltf-transform/core": "4.3.0",
"@pixiv/three-vrm": "^3.1.4",
"@pixiv/three-vrm-animation": "^3.1.4",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "9.6.1",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@types/three": "^0.184.1",
"add": "^2.0.6",
"eslint": "^10.3.0",
"eslint-config-next": "16.2.6",
"jsonwebtoken": "^9.0.2",
"jwa": "^2.0.1",
"jws": "^4.0.1",
"next": "16.2.6",
"next-auth": "4.24.14",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-use": "^17.4.0",
"styled-components": "^6.0.5",
"three": "^0.184.0",
"typescript": "^6.0.3",
"yarn": "^1.22.22"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "always",
"trailingComma": "all",
"printWidth": 120
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.6.0",
"lint-staged": "^17.0.4",
"prettier": "^3.0.0",
"typescript-eslint": "^8.59.3",
"webpack-bundle-analyzer": "^5.3.0"
}
}