-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.32 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
{
"name": "zero-cost-crm",
"private": true,
"version": "1.1.0",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "concurrently -n web,api -c cyan,magenta \"vite\" \"tsx watch server/index.ts\"",
"dev:web": "vite",
"dev:api": "tsx watch server/index.ts",
"build": "tsc -b && vite build",
"lint": "oxlint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview",
"test": "vitest run --config vitest.config.ts",
"test:api": "vitest run --config vitest.functional.config.ts",
"test:api:prep": "node testing/functional/prepare.mjs",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install chromium",
"ci": "npm run lint && npm run format:check && npm run test && npm run build",
"db:migrate": "node scripts/db-migrate.mjs",
"start": "NODE_ENV=production tsx server/index.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1083.0",
"@aws-sdk/s3-request-presigner": "^3.1083.0",
"@dnd-kit/core": "^6.3.1",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"exceljs": "^4.4.0",
"express": "^5.1.0",
"express-rate-limit": "^8.6.0",
"helmet": "^8.3.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@tailwindcss/vite": "^4.3.2",
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.13.2",
"@types/pg": "^8.15.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"concurrently": "^9.2.1",
"oxlint": "^1.71.0",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.2",
"tsx": "^4.20.5",
"typescript": "~6.0.2",
"vite": "^8.1.1",
"vitest": "^3.2.7"
},
"description": "A self-hosted, open-source CRM for small sales teams—pipeline, contacts, follow-ups, activity tracking, lead imports, and optional call recordings.",
"repository": {
"type": "git",
"url": "https://github.com/ConvoBrains/zero-cost-crm.git"
},
"bugs": {
"url": "https://github.com/ConvoBrains/zero-cost-crm/issues"
},
"homepage": "https://github.com/ConvoBrains/zero-cost-crm#readme",
"engines": {
"node": ">=22"
}
}