-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.4 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "my-books",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"types": "tsc --noEmit",
"drizzle-generate": "drizzle-kit generate",
"drizzle-migrate": "drizzle-kit migrate",
"drizzle-test": "tsx ./dev/drizzle-test.ts",
"backblaze-housekeeping": "tsx ./server/backblaze-housekeeping.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:generate": "playwright codegen",
"test:e2e:show-report": "playwright show-report playwright-report-e2e",
"test:component": "playwright test -c playwright-ct.config.ts",
"test:component:ui": "playwright test -c playwright-ct.config.ts --ui",
"test:component:show-report": "playwright show-report playwright-report-component"
},
"pnpm": {
"ignoredBuildDependencies": [
"sharp"
],
"supportedArchitectures": {
"cpu": [
"x64"
],
"os": [
"linux",
"win32"
]
}
},
"dependencies": {
"@aws-sdk/client-s3": "3.726.1",
"@clerk/nextjs": "^4.19.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-navigation-menu": "^1.1.3",
"@radix-ui/react-slot": "^1.0.2",
"@sentry/nextjs": "^7.55.2",
"@types/node": "20.2.3",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"@vercel/analytics": "^1.0.1",
"autoprefixer": "10.4.14",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.43.1",
"eslint": "8.41.0",
"formidable": "^3.5.0",
"framer-motion": "^10.12.16",
"mysql2": "^3.3.3",
"next": "14.2.28",
"next-connect": "^1.0.0",
"postcss": "8.4.23",
"postgres": "^3.4.5",
"react": "18",
"react-dom": "18",
"sharp": "0.34.1",
"tailwind-merge": "^1.13.2",
"tailwindcss-animate": "^1.0.6",
"typescript": "5.0.4",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@playwright/experimental-ct-react": "^1.52.0",
"@playwright/test": "^1.36.1",
"@types/formidable": "^3.4.0",
"@types/sharp": "0.32.0",
"@types/uuid": "^9.0.2",
"drizzle-kit": "^0.31.0",
"eslint-config-next": "14.2.28",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "3.3.2",
"tsx": "^3.12.7"
}
}