-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 2.32 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
{
"name": "airbroke",
"version": "1.1.73",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"db:generate": "prisma generate",
"db:pull": "prisma db pull",
"db:seed": "prisma db seed",
"db:migrate": "prisma migrate deploy",
"postinstall": "prisma generate",
"lint:eslint:vscode": "eslint -c eslint.config.mjs 'app/**/*.{js,ts,jsx,tsx}' 'components/**/*.{js,ts,jsx,tsx}' 'lib/**/*.{js,ts,jsx,tsx}'",
"lint:eslint:vscode:watch": "chokidar 'app/**/*.{js,ts,jsx,tsx}' 'components/**/*.{js,ts,jsx,tsx}' 'lib/**/*.{js,ts,jsx,tsx}' -c 'yarn lint:eslint:vscode'"
},
"dependencies": {
"@ai-sdk/openai": "1.0.20",
"@airbrake/browser": "2.1.8",
"@airbrake/node": "2.1.8",
"@auth/prisma-adapter": "2.7.4",
"@headlessui/react": "2.2.0",
"@microlink/react-json-view": "^1.24.0",
"@prisma/client": "6.2.1",
"ai": "4.0.40",
"chart.js": "4.4.7",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"nanoid": "5.0.9",
"next": "15.2.0-canary.14",
"next-auth": "5.0.0-beta.25",
"numbro": "^2.5.0",
"react": "19.0.0",
"react-chartjs-2": "5.3.0",
"react-dom": "19.0.0",
"react-icons": "5.4.0",
"react-syntax-highlighter": "^15.6.1",
"server-only": "0.0.1",
"zod": "3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@faker-js/faker": "9.4.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/node": "22.10.7",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "4.3.4",
"babel-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
"chokidar-cli": "^3.0.0",
"eslint": "9.18.0",
"eslint-config-next": "15.2.0-canary.14",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
"jsdom": "^26.0.0",
"postcss": "8.5.1",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.10",
"prisma": "6.2.1",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "^2.1.8"
},
"prisma": {
"seed": "node --experimental-strip-types prisma/seed.ts"
},
"packageManager": "yarn@4.6.0"
}