-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.44 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
{
"name": "spenfree",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma-push:local": "dotenv -e .env.local -- pnpx prisma db push",
"prisma-push": "dotenv -e .env.production -- pnpx prisma db push",
"prisma-seed:local": "dotenv -e .env.local -- ts-node --compiler-options {\\\"module\\\":\\\"CommonJS\\\"} prisma/seed.ts",
"prisma-seed": "dotenv -e .env.production -- ts-node --compiler-options {\\\"module\\\":\\\"CommonJS\\\"} prisma/seed.ts",
"vercel-build": "prisma generate && prisma migrate deploy && next build"
},
"dependencies": {
"@mantine/charts": "^7.15.1",
"@mantine/core": "^7.15.1",
"@mantine/dates": "^7.15.1",
"@mantine/hooks": "^7.15.1",
"@prisma/client": "5.11.0",
"dayjs": "^1.11.13",
"geist": "^1.3.1",
"next": "14.2.10",
"react": "^18",
"react-content-loader": "^7.0.2",
"react-dom": "^18",
"recharts": "^2.13.3",
"toaster-ts": "^0.3.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.49",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "3.3.3",
"prisma": "^5.11.0",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}