-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
72 lines (72 loc) · 2.42 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
{
"name": "onurl",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"codequality": "pnpm format && pnpm lint && pnpm typecheck",
"codequality:fix": "pnpm format:fix && pnpm lint:fix && pnpm typecheck",
"db:migrate": "dotenv -e .env.development prisma migrate dev",
"db:reset": "dotenv -e .env.development prisma migrate reset",
"db:start": "docker compose -f docker/development/compose.yaml up -d",
"db:stop": "docker compose -f docker/development/compose.yaml down",
"dev": "next dev --turbopack",
"format": "prettier --check --ignore-unknown .",
"format:fix": "prettier --write --ignore-unknown .",
"postinstall": "prisma generate",
"lint": "next lint --max-warnings 0",
"lint:fix": "next lint --fix --max-warnings 0",
"postinstall:about": "echo 'https://www.prisma.io/docs/guides/other/troubleshooting-orm/help-articles/vercel-caching-issue'",
"prepare": "husky",
"start": "next start",
"typecheck": "tsc",
"unused": "knip",
"updates": "npm-check-updates -i"
},
"dependencies": {
"@prisma/client": "^6.0.1",
"class-variance-authority": "^0.7.1",
"file-saver": "^2.0.5",
"go-try": "^3.0.2",
"nanoid": "^5.0.9",
"next": "15.1.0",
"qrcode.react": "^4.2.0",
"react": "19.0.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "19.0.0",
"react-icons": "^5.4.0",
"react-share": "^5.1.1",
"server-only": "^0.0.1",
"tailwind-merge": "^2.5.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/file-saver": "^2.0.7",
"@types/node": "^22.10.2",
"@types/qrcode.react": "^1.0.5",
"@types/react": "19.0.1",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "19.0.2",
"autoprefixer": "^10.4.20",
"dotenv-cli": "^7.4.4",
"eslint": "^9.17.0",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-unicorn": "^56.0.1",
"husky": "^9.1.7",
"knip": "^5.40.0",
"lint-staged": "^15.2.11",
"npm-check-updates": "^17.1.11",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-tailwindcss": "^0.6.9",
"prisma": "^6.0.1",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"packageManager": "[email protected]"
}