-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.2 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.2 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
{
"name": "pause_ai_everything",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"test": "vitest run",
"test:watch": "vitest",
"db:seed": "npx tsx --env-file=.env src/db/seed.ts",
"worker": "npx tsx --env-file=.env src/worker/index.ts",
"docs:api": "npx tsx scripts/generate-api-docs.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maximophone/pauseai-everything.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/Maximophone/pauseai-everything/issues"
},
"homepage": "https://github.com/Maximophone/pauseai-everything#readme",
"dependencies": {
"@auth/drizzle-adapter": "^1.11.1",
"@base-ui/react": "^1.3.0",
"@codemirror/lang-javascript": "^6.2.5",
"@uiw/react-codemirror": "^4.25.8",
"ag-grid-community": "^35.1.0",
"ag-grid-react": "^35.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cron-parser": "^5.5.0",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"graphile-worker": "^0.16.6",
"lucide-react": "^0.577.0",
"next": "^16.1.6",
"next-auth": "^5.0.0-beta.30",
"papaparse": "^5.5.3",
"postgres": "^3.4.8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"recharts": "^3.8.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"shadcn": "^4.0.8",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^25.5.0",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.14",
"@vitejs/plugin-react": "^6.0.1",
"drizzle-kit": "^0.31.9",
"eslint": "^9.39.4",
"eslint-config-next": "^16.1.6",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}