-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1007 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1007 Bytes
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
{
"name": "siteguard",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"worker": "tsx workers/scanWorker.ts",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:push": "prisma db push"
},
"dependencies": {
"@prisma/client": "^6.5.0",
"axios": "^1.8.4",
"bullmq": "^5.7.8",
"cheerio": "^1.0.0",
"ioredis": "^5.4.1",
"next": "14.2.5",
"next-auth": "^4.24.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"wappalyzer": "^7.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.16.3",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.5",
"postcss": "^8.4.47",
"prisma": "^6.5.0",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.2",
"typescript": "^5.6.2"
}
}