-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.63 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "coolection",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"build:dev": "prisma generate && prisma db push && prisma db seed && next build",
"build:prod": "prisma generate && prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint",
"db:seed": "prisma generate && prisma db seed",
"db:push": "prisma db push --accept-data-loss",
"db:pull": "prisma db pull",
"db:up": "docker-compose up -d",
"db:down": "docker-compose down -v",
"db:reset": "prisma db push --force-reset && prisma db seed",
"db:migrate:dev": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"dev:unarchive": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/purge-local-data.ts"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@clerk/clerk-react": "^5.1.0",
"@clerk/nextjs": "^5.0.12",
"@mozilla/readability": "^0.5.0",
"@piotr-cz/swr-idb-cache": "^1.0.3",
"@prisma/client": "^5.14.0",
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"cheerio": "1.0.0-rc.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.1.9",
"jsdom": "^24.0.0",
"lucide-react": "^0.376.0",
"next": "14.2.3",
"next-view-transitions": "^0.1.1",
"node-fetch": "^3.3.2",
"node-html-parser": "^6.1.13",
"normalize-url": "^8.0.1",
"openai": "^4.39.0",
"react": "^18",
"react-dom": "^18",
"react-wrap-balancer": "^1.1.1",
"reakeys": "^2.0.2",
"sonner": "^1.4.41",
"svix": "^1.24.0",
"swr": "2.2.6-beta.3",
"tailwind-merge": "^2.3.0",
"use-debounce": "^10.0.0",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@types/jsdom": "^21.1.6",
"@types/node": "^20.12.7",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.1.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.1",
"prisma": "^5.14.0",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": "18.x",
"pnpm": "8"
}
}