-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.85 KB
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
74
75
76
77
78
79
80
{
"name": "devurityweb",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.4.0",
"scripts": {
"migrate": "node scripts/migrate.mjs",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"secure-install": "pnpm install --ignore-scripts",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "cross-env JWT_SECRET=test-secret-key-for-testing node --import tsx --test tests/*.node-test.ts",
"test:watch": "cross-env JWT_SECRET=test-secret-key-for-testing node --import tsx --test --watch tests/*.node-test.ts",
"test:coverage": "cross-env JWT_SECRET=test-secret-key-for-testing node --experimental-test-coverage --import tsx --test tests/*.node-test.ts",
"postinstall": "prisma generate",
"vercel-build": "prisma migrate deploy && next build",
"db:seed": "tsx prisma/seed.ts",
"db:seed:sql-sync": "tsx scripts/generate-sql-seed.ts",
"db:fixture": "cross-env NODE_ENV=development node --import tsx --env-file=.env scripts/fixtures/index.ts",
"db:fixture:dry": "cross-env NODE_ENV=development node --import tsx --env-file=.env scripts/fixtures/index.ts -- --dry-run",
"db:push": "prisma db push",
"db:migrate": "prisma migrate deploy",
"db:migrate:dev": "prisma migrate dev",
"db:repair": "prisma db execute --file prisma/repair-sequences.sql --schema prisma/schema.prisma",
"db:deploy": "tsx scripts/deploy-db.ts deploy",
"db:deploy:dry": "DRY_RUN=1 tsx scripts/deploy-db.ts deploy",
"db:status": "tsx scripts/deploy-db.ts status"
},
"dependencies": {
"@clack/prompts": "1.6.0",
"@heroicons/react": "2.2.0",
"@prisma/client": "6.19.3",
"@vercel/analytics": "2.0.1",
"altcha-lib": "2.3.1",
"@vercel/speed-insights": "2.0.0",
"bcryptjs": "3.0.3",
"framer-motion": "12.38.0",
"html5-qrcode": "2.3.8",
"jsonwebtoken": "9.0.3",
"next": "15.5.21",
"nodemailer": "9.0.1",
"only-allow": "1.2.1",
"qrcode": "1.5.4",
"react": "19.1.2",
"react-dom": "19.1.2",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@tailwindcss/postcss": "4.2.4",
"@types/bcryptjs": "2.4.6",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "20.19.39",
"@types/nodemailer": "8.0.0",
"@types/qrcode": "1.5.6",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitest/coverage-v8": "4.1.5",
"cross-env": "7.0.3",
"eslint": "9.39.4",
"eslint-config-next": "15.5.4",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prisma": "6.19.3",
"tailwindcss": "4.2.4",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings=0"
]
}
}