-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.24 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.24 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
{
"name": "corestack",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"type-check": "tsc --noEmit",
"test": "echo \"No tests configured yet\" && exit 0",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx scripts/seed.ts",
"ws:server": "tsx server/websocket.ts",
"queue:worker": "tsx server/queue/worker.ts",
"temporal:worker": "tsx server/temporal/workers/main.worker.ts",
"cli": "tsx cli/index.ts",
"prepare": "husky"
},
"dependencies": {
"@tanstack/react-query": "^5.90.5",
"@temporalio/activity": "^1.11.6",
"@temporalio/client": "^1.11.6",
"@temporalio/worker": "^1.11.6",
"@temporalio/workflow": "^1.11.6",
"@trpc/client": "^11.0.0",
"@trpc/next": "^11.0.0",
"@trpc/react-query": "^11.0.0",
"@trpc/server": "^11.0.0",
"bcryptjs": "^3.0.2",
"bullmq": "^5.61.0",
"chalk": "^5.4.1",
"commander": "^14.0.1",
"drizzle-orm": "^0.44.6",
"inquirer": "^10.0.0",
"ioredis": "^5.8.1",
"jose": "^6.1.0",
"ldapts": "^8.0.9",
"next": "15.5.6",
"node-ssh": "^13.2.1",
"ora": "^8.1.1",
"pino": "^10.1.0",
"postgres": "^3.4.7",
"prom-client": "^15.1.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"ssh2": "^1.17.0",
"superjson": "^2.2.2",
"ws": "^8.18.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@temporalio/testing": "^1.11.6",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.19.23",
"@types/pino": "^7.0.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ssh2": "^1.15.5",
"@types/ws": "^8.18.1",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.5",
"eslint": "^9",
"eslint-config-next": "15.5.6",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"pino-pretty": "^13.1.2",
"tailwindcss": "^4",
"tsx": "^4.20.6",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs}": [
"eslint --fix"
]
}
}