-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
79 lines (79 loc) · 2.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
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
{
"name": "aniso",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postbuild": "next-sitemap",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"prepare": "husky install"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.0.0",
"@radix-ui/react-select": "^1.0.0",
"@react-spring/rafz": "^9.5.2",
"@react-spring/web": "^9.5.2",
"@react-three/drei": "^9.28.2",
"@react-three/fiber": "^8.7.2",
"@react-three/postprocessing": "^2.6.2",
"@studio-freight/hamo": "^0.4.42",
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
"debounce": "^1.2.1",
"embla-carousel-autoplay": "^7.0.2",
"embla-carousel-react": "^7.0.2",
"glslify-loader": "^2.0.0",
"husky": "^8.0.1",
"leva": "^0.9.31",
"lint-staged": "^13.0.3",
"next": "12.2.5",
"next-pwa": "5.6.0",
"next-seo": "^5.5.0",
"next-sitemap": "^3.1.21",
"postprocessing": "^6.28.7",
"raw-loader": "^4.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-use": "^17.4.0",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.54.8",
"stats.js": "^0.17.0",
"three": "^0.144.0",
"tunnel-rat": "^0.0.4",
"use-dark-mode": "^2.3.1",
"uuid": "^9.0.0",
"zustand": "4.1.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.2.5",
"@svgr/webpack": "^6.3.1",
"critters": "^0.0.16",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"next-transpile-modules": "^9.0.0",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,scss,md}": "prettier --write"
},
"pnpm": {
"overrides": {
"throttle-debounce": "5.0.0",
"@radix-ui/react-portal": "0.1.4",
"@radix-ui/react-primitive": "0.1.4",
"extend-shallow": "3.0.2",
"is-extendable": "1.0.1",
"scheduler": "0.22.0",
"zustand": "4.1.0",
"react-is": "17.0.2"
}
}
}