-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.16 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
{
"name": "lahjalista",
"version": "0.1.0",
"private": true,
"files": [],
"engines": {
"node": "^20",
"npm": ">=9"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"vercel-build": "prisma generate && npm run migrate:prod && next build",
"check-types": "tsc --noemit",
"lint": "(next lint || true) && npm run check-types",
"lint:fix": "next lint --fix",
"start-json-server": "json-server -p3001 --watch db.json",
"prepush": "next lint --max-warnings=0 && npm run check-types",
"svgr": "svgr --out-dir icons --typescript --jsx-runtime automatic --no-dimensions --silent --filename-case snake --ignore-existing --no-index -- public/images/icons",
"migrate": "npm run prisma migrate deploy && prisma generate",
"migrate:prod": "if [ \"$VERCEL_ENV\" = \"production\" ]; then npm run prisma migrate deploy; fi",
"prisma": "dotenv -c .env.local -- prisma"
},
"dependencies": {
"@lucia-auth/adapter-prisma": "4.0.1",
"@prisma/client": "5.20.0",
"@tanstack/react-query": "5.59.16",
"@types/node": "20.12.4",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.20",
"axios": "1.7.7",
"bcrypt": "5.1.1",
"dotenv": "16.4.5",
"dotenv-cli": "7.4.2",
"eslint": "8.57.0",
"eslint-config-next": "14.2.15",
"google-auth-library": "9.14.1",
"googleapis": "144.0.0",
"lucia": "3.2.1",
"next": "14.2.15",
"oslo": "1.2.1",
"postcss": "8.4.47",
"prisma": "5.20.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-toastify": "10.0.5",
"sharp": "0.33.5",
"tailwind-merge": "2.5.3",
"tailwindcss": "3.4.13",
"typescript": "5.4.5",
"zod": "3.23.8"
},
"devDependencies": {
"@svgr/cli": "8.1.0",
"@svgr/webpack": "8.1.0",
"@tanstack/eslint-plugin-query": "5.59.7",
"@types/bcrypt": "5.0.2",
"@typescript-eslint/eslint-plugin": "7.5.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8"
}
}