-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "tbls-predictor",
"version": "1.0.0",
"packageManager": "[email protected]",
"scripts": {
"dev": "next -p 3001",
"build": "next build",
"start": "next start -p 3001",
"test": "jest --watch",
"prisma:generate": "prisma generate --no-engine",
"vercel-build": "yarn prisma:generate && next build",
"playwright:run": "yarn playwright test",
"playwright:open": "yarn playwright test --ui"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.4",
"@prisma/client": "^5.8.0",
"@prisma/extension-accelerate": "^0.6.2",
"@sentry/nextjs": "^8.45.0",
"axios": "^0.24.0",
"dayjs": "^1.11.7",
"deepmerge": "^4.3.0",
"eslint-config-next": "15.1.0",
"mongodb": "^6.1.0",
"next": "15.1.0",
"next-auth": "^5.0.0-beta.25",
"nodemailer": "^6.7.2",
"pg": "^8.5.1",
"prisma": "^5.6.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"reflect-metadata": "^0.1.13",
"stylis": "^4.3.0",
"typeorm": "^0.2.31"
},
"devDependencies": {
"@playwright/test": "^1.38.1",
"@types/jest": "^27.4.1",
"@types/next-auth": "^3.15.0",
"@types/node": "^18.15.11",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^27.5.1",
"typescript": "^5.3.3"
},
"license": "MIT"
}