-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.09 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.09 KB
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
{
"name": "rate-a-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && tsc --noEmit",
"db:generate": "drizzle-kit generate:mysql",
"db:push": "drizzle-kit push:mysql --config=drizzle.config.ts",
"db:seed": "node --env-file=.env.local --loader esbuild-register/loader -r esbuild-register src/drizzle/seed.js"
},
"dependencies": {
"@apollo/client": "^3.8.7",
"@apollo/experimental-nextjs-app-support": "^0.5.1",
"@apollo/server": "^4.9.5",
"@as-integrations/next": "^3.0.0",
"@clerk/nextjs": "^4.27.2",
"@graphql-tools/schema": "^10.0.0",
"@planetscale/database": "^1.11.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@types/react-dom": "^18.2.17",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"D": "^1.0.0",
"drizzle-orm": "^0.29.0",
"esbuild-register": "^3.5.0",
"eslint-config-prettier": "^9.0.0",
"graphql-tag": "^2.12.6",
"lucide-react": "^0.294.0",
"mysql2": "^3.6.5",
"next": "14.0.3",
"next-axiom": "^1.1.1",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.2",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/node": "20.9.4",
"@types/react": "^18.2.38",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"autoprefixer": "^10.0.1",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.20.6",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"postcss": "^8",
"standard": "^17.1.0",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2"
},
"browser": {
"crypto": false,
"zlib": false,
"os": false
}
}