-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings 0",
"typescript:check": "tsc --noEmit",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"prepare": "husky install",
"postbuild": "next-sitemap"
},
"dependencies": {
"@formatjs/intl-localematcher": "0.2.32",
"@giscus/react": "^2.3.0",
"@ramonak/react-progress-bar": "^5.0.3",
"@react-three/drei": "^9.50.3",
"@react-three/fiber": "^8.9.2",
"@tweenjs/tween.js": "^19.0.0",
"@types/three": "^0.148.0",
"clsx": "^1.2.1",
"gray-matter": "~4.0.2",
"lamina": "1.0.6",
"leva": "^0.9.34",
"negotiator": "0.6.3",
"next": "^13.2.4",
"next-mdx-remote": "^4.4.1",
"next-sitemap": "~4.2.3",
"r3f-perf": "^6.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.2.0",
"rehype-prism-plus": "^1.5.1",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.3",
"server-only": "0.0.1",
"tailwind-merge": "^1.10.0",
"three": "^0.148.0",
"vite-plugin-glsl": "^1.1.0",
"zustand": "^4.3.7"
},
"devDependencies": {
"@types/negotiator": "0.6.1",
"@types/node": "^18.11.5",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.35.0",
"eslint-config-next": "^13.2.4",
"fox-awesome-cli": "^1.3.0",
"husky": "^7.0.0",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"prettier": "2.7.1",
"sass": "^1.55.0",
"tailwindcss": "^3.2.7",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,scss,json,md,mdx}": "prettier --write"
}
}