-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.91 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
{
"name": "paste-new",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "bun --bun src/server.ts",
"build": "prisma generate --schema=./schema.prisma && next build",
"start": "bun --bun src/server.ts",
"next:dev": "next dev --turbopack",
"prisma:generate": "prisma generate --schema=./schema.prisma",
"prisma:migrate": "prisma migrate deploy --schema=./schema.prisma",
"prettier": "bunx prettier -w --config ./prettierrc.json ."
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@prisma/adapter-pg": "^7.4.1",
"@prisma/client": "^7.4.1",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@ray-d-song/guesslang-js": "^0.1.0",
"@t3-oss/env-core": "^0.13.10",
"@tailwindcss/postcss": "^4.2.1",
"@tanstack/react-query": "^5.90.21",
"@types/prismjs": "^1.26.6",
"babel-plugin-react-compiler": "^1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"lucide-react": "^0.575.0",
"minio": "^8.0.6",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"node-cron": "^4.2.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prism-react-renderer": "^2.4.1",
"prismjs": "^1.30.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@types/node-cron": "^3.0.11",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^10.0.1",
"eslint-config-next": "16.1.6",
"postcss": "^8.5.6",
"prisma": "7.4.1",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3"
}
}