-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.99 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
{
"name": "platformaai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "node scripts/start-production.mjs",
"lint": "eslint",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"server:lint": "bash ./scripts/server-lint.sh",
"server:test": "bash ./scripts/server-test.sh",
"server:e2e": "bash ./scripts/server-e2e.sh",
"server:check": "bash ./scripts/server-check.sh",
"bot:dev": "tsx src/bot/index.ts",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:seed": "prisma db seed"
},
"dependencies": {
"@auth/core": "0.41.1",
"@auth/prisma-adapter": "^2.7.4",
"@prisma/client": "^5.22.0",
"bcryptjs": "^3.0.3",
"cheerio": "^1.0.0-rc.12",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"highlight.js": "^11.11.1",
"lightningcss": "^1.30.2",
"mammoth": "^1.8.0",
"next": "^15.5.15",
"next-auth": "^5.0.0-beta.25",
"papaparse": "^5.4.1",
"pdf-parse": "^1.1.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^9.0.1",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"stripe": "^20.1.0",
"tailwind-merge": "^2.5.4",
"telegraf": "^4.16.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.54.2",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^9",
"eslint-config-next": "15.5.15",
"jsdom": "^26.0.0",
"prisma": "^5.22.0",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"typescript": "^5",
"vitest": "^3.0.4"
},
"overrides": {
"@auth/core": "0.41.1",
"@xmldom/xmldom": "0.8.12",
"qs": "6.15.1",
"undici": "7.24.0",
"underscore": "1.13.8"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}