-
Notifications
You must be signed in to change notification settings - Fork 252
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.67 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 4.67 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "gitverse-nextjs",
"version": "0.1.0",
"private": true,
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "cross-env NODE_OPTIONS=\"--dns-result-order=ipv4first --no-network-family-autoselection\" next dev",
"build": "prisma generate && npm run build:worker && next build",
"analyze": "cross-env ANALYZE=true next build",
"typecheck": "prisma generate && node -e \"try { require('fs').rmSync('tsconfig.tsbuildinfo'); } catch (e) {}\" && tsc -p tsconfig.json --noEmit",
"build:worker": "tsc -p tsconfig.worker.json",
"preworker": "npm run build:worker",
"preworker:server": "npm run build:worker",
"start": "cross-env NODE_OPTIONS=\"--dns-result-order=ipv4first --no-network-family-autoselection\" next start -p $PORT",
"worker": "cross-env NODE_OPTIONS=\"--dns-result-order=ipv4first --no-network-family-autoselection\" node dist-worker/scripts/analysisWorker.js",
"worker:server": "cross-env NODE_OPTIONS=\"--dns-result-order=ipv4first --no-network-family-autoselection\" node dist-worker/scripts/workerServer.js",
"worker:webhook": "cross-env NODE_OPTIONS=\"--dns-result-order=ipv4first --no-network-family-autoselection\" node dist-worker/scripts/webhookWorker.js",
"worker:dev": "tsx watch scripts/analysisWorker.ts",
"worker:server:dev": "tsx watch scripts/workerServer.ts",
"worker:webhook:dev": "tsx watch scripts/webhookWorker.ts",
"lint": "next lint",
"format": "prettier --write \"**/*.{ts,tsx,css}\"",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"test:validation": "tsx scripts/test-validation.ts",
"test:e2e": "cross-env PLAYWRIGHT_TEST=true playwright test",
"test": "jest --config jest.config.cjs --forceExit",
"db:seed": "tsx prisma/seed.ts",
"kms:init": "tsx scripts/kms-init.ts",
"rotate:dek": "tsx scripts/rotate-dek.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@aws-sdk/client-kms": "^3.1063.0",
"@aws-sdk/client-s3": "^3.1063.0",
"@google/generative-ai": "^0.24.1",
"@neondatabase/serverless": "^1.0.2",
"@prisma/adapter-neon": "^7.2.0",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.8.0",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@types/d3": "^7.4.3",
"@types/pg": "^8.16.0",
"@types/react-syntax-highlighter": "^15.5.13",
"axios": "^1.13.2",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.3",
"bullmq": "^5.78.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cross-env": "^10.1.0",
"d3": "^7.9.0",
"dotenv": "^16.4.5",
"firebase": "^10.14.1",
"framer-motion": "^12.40.0",
"google-auth-library": "^10.3.0",
"html-to-image": "^1.11.13",
"html2canvas": "^1.4.1",
"ioredis": "^5.11.0",
"jsonwebtoken": "^9.0.3",
"jspdf": "^4.2.1",
"lru-cache": "^11.5.1",
"lucide-react": "^0.294.0",
"next": "^14.1.0",
"next-auth": "^4.24.13",
"next-nprogress-bar": "^2.4.7",
"next-themes": "^0.4.6",
"opossum": "^9.0.0",
"pg": "^8.16.3",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"recharts": "^3.6.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"sharp": "^0.34.5",
"sonner": "^1.3.1",
"tailwind-merge": "^2.6.1",
"ws": "^8.21.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@faker-js/faker": "^10.4.0",
"@next/bundle-analyzer": "^16.2.7",
"@playwright/test": "^1.60.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.0",
"@testing-library/react": "^16.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.9.1",
"@types/opossum": "^8.1.9",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-next": "^14.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.32",
"prettier": "^3.8.3",
"prisma": "^7.8.0",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.2.5",
"tsx": "^4.21.0",
"typescript": "^5.2.2",
"vitest": "^3.2.4"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}