-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"name": "deep-sea-crm",
"version": "0.1.0",
"private": true,
"license": "MIT",
"description": "Harbor Pilot CRM — local-first CRM workspace with Clerk auth, Stripe billing, and a 49-screen design reference library.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"connections": "node --env-file=.env.local scripts/check-connections.mjs",
"smoke": "node --env-file=.env.local scripts/smoke.mjs",
"smoke:workflow": "node --env-file=.env.local scripts/workflow-smoke.mjs",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1046.0",
"@aws-sdk/s3-request-presigner": "^3.1046.0",
"@clerk/nextjs": "^6.12.0",
"@composio/core": "^0.10.0",
"@neondatabase/serverless": "^1.1.0",
"drizzle-orm": "^0.45.2",
"next": "^15.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"stripe": "^17.5.0",
"svix": "^1.42.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.31.10",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.0",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"esbuild": "^0.28.0",
"postcss": "$postcss"
}
}