-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.2 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "home",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add -A "
]
},
"dependencies": {
"@pmndrs/assets": "^1.6.0",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-aspect-ratio": "^1.0.1",
"@radix-ui/react-avatar": "^1.0.1",
"@radix-ui/react-hover-card": "^1.0.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-navigation-menu": "^1.1.1",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-three/drei": "^9.83.9",
"@react-three/fiber": "^8.15.11",
"@types/styled-components": "^5.1.32",
"framer-motion": "^10.16.4",
"gsap": "^3.11.3",
"leva": "^0.9.35",
"next": "14.0.1",
"next-themes": "^0.2.1",
"react": "latest",
"react-dom": "latest",
"react-merge-refs": "^2.0.2",
"smooth-scrollbar": "^8.8.1",
"styled-components": "^6.1.1",
"suspend-react": "^0.1.3",
"three": "^0.158.0",
"typescript": "4.9.3"
},
"packageManager": "[email protected]",
"devDependencies": {
"@next/eslint-plugin-next": "^13.0.6",
"@svgr/webpack": "^6.5.1",
"@types/node": "18.11.9",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/three": "^0.146.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "8.28.0",
"eslint-config-next": "latest",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"glslify": "^7.1.1",
"glslify-import-loader": "^0.1.2",
"glslify-loader": "^2.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"raw-loader": "^4.0.2"
},
"resolutions": {
"styled-components": "^5",
"@types/react": "^18.0.1"
}
}