-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "second-brain-showcase",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npx prisma generate && npx prisma migrate deploy && next build",
"start": "next start",
"test": "vitest --passWithNoTests",
"lint": "next lint --fix",
"prepare": "husky",
"prettier": "prettier --write .",
"seed": "npx ts-node prisma/seed.ts"
},
"dependencies": {
"@clerk/nextjs": "^4.29.9",
"@prisma/client": "^5.10.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-menubar": "^1.0.4",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-three/drei": "^9.101.0",
"@react-three/fiber": "^8.15.19",
"@types/three": "^0.162.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^1.0.0",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.348.0",
"next": "14.1.2",
"react": "^18",
"react-dom": "^18",
"react-force-graph": "^1.44.3",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"three": "^0.162.0"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"postcss": "^8",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"prisma": "^5.10.2",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"typescript-eslint": "^7.1.1",
"vitest": "^1.3.1"
}
}