-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 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
{
"name": "braille-course-web",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"postinstall": "prisma generate",
"db:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.73.0",
"@prisma/client": "^6.0.0",
"@stripe/react-stripe-js": "^5.6.0",
"@stripe/stripe-js": "^8.7.0",
"@vercel/analytics": "^1.6.1",
"@vercel/blob": "^2.1.0",
"imapflow": "^1.2.8",
"mailparser": "^3.9.3",
"next": "^14.2.0",
"pdfkit": "^0.17.2",
"pptxgenjs": "^4.0.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"resend": "^6.9.1",
"stripe": "^17.0.0"
},
"devDependencies": {
"@jest/types": "^30.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/mailparser": "^3.4.6",
"@types/node": "^20.0.0",
"@types/pdfkit": "^0.17.4",
"@types/react": "18.3.28",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.35",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.8.1",
"prisma": "^6.0.0",
"ts-jest": "^29.4.6",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
}
}