-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
{
"name": "codeforyamaguchi.org",
"version": "1.2.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"inspect": "npm-run-all -l -c inspect:*",
"inspect:lint": "next lint --dir src",
"inspect:format": "prettier --check src",
"fix": "npm-run-all -l -c fix:*",
"fix:lint": "bun run inspect:lint --fix",
"fix:format": "bun run inspect:format --write",
"prettier:pick": "pretty-quick --staged"
},
"dependencies": {
"@notionhq/client": "^2.2.14",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@react-three/drei": "^9.92.7",
"@react-three/fiber": "^8.15.12",
"@react-three/xr": "^5.7.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"framer-motion": "^10.16.16",
"lucide-react": "^0.303.0",
"next": "14.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.160.0",
"three-stdlib": "^2.28.9"
},
"devDependencies": {
"@types/node": "20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/three": "^0.160.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3"
}
}