forked from Open-audit-foundation/Open-Audit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.83 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
{
"name": "open-audit",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:ws": "ts-node --project tsconfig.server.json server.ts",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"db:seed": "ts-node prisma/seed.ts",
"db:studio": "prisma studio"
},
"dependencies": {
"prisma": "^5.8.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.2.17",
"@radix-ui/react-tooltip": "^1.0.7",
"@sentry/node": "^10.59.0",
"bull": "^4.11.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"ioredis": "^5.11.1",
"lucide-react": "^0.378.0",
"next": "14.2.3",
"node-cron": "^3.0.3",
"pino": "^8.17.2",
"react": "^18",
"react-dom": "^18",
"react-syntax-highlighter": "^16.1.1",
"redis": "^4.6.12",
"stellar-sdk": "^12.1.0",
"swagger-ui-react": "^5.32.6",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/bull": "^4.10.8",
"@types/ioredis": "^4.28.10",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/swagger-ui-react": "^5.18.0",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"ioredis": "^5.11.1",
"msw": "^2.14.6",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5",
"vitest": "^2.1.8"
}
}