-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.07 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.07 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
{
"name": "nowcrm",
"version": "1.0.0",
"description": "your open source CRM with multichannel outreach capabilities and efficient data management at scale.",
"scripts": {
"build:libs": "pnpm --filter './libs/*' run build",
"build:apps": "pnpm --filter './apps/*' run build",
"build:all": "pnpm -r run build",
"lint:libs": "pnpm --filter './libs/*' run lint:fix",
"lint:apps": "pnpm --filter './apps/*' run lint:fix",
"lint:all": "pnpm -r run lint:fix",
"generate-index:services": "pnpm --filter @nowcrm/services run generate-index",
"generate-service-factory": "pnpm --filter @nowcrm/services run generate-service-factory",
"generate-app": "tsx scripts/generate-app/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.19.0",
"workspaces": [
"apps/*",
"libs/*"
],
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "20.19.9",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"tslib": "^2.3.0",
"tsx": "^4.20.6",
"typescript": "~5.9.2"
}
}