-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.03 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.03 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
84
85
86
87
88
{
"name": "@hotcrm/monorepo",
"version": "1.0.0",
"description": "Enterprise-level CRM system based on @objectstack/spec with world-class UI/UX - Plugin-based Monorepo Architecture",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.3",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "objectstack serve --dev",
"dev:docs": "pnpm --filter @hotcrm/docs dev",
"dev:studio": "objectstack studio",
"serve": "objectstack serve",
"start": "objectstack start",
"build": "pnpm --filter @hotcrm/core build && pnpm -r build",
"build:ai": "pnpm --filter @hotcrm/ai build",
"build:crm": "pnpm --filter @hotcrm/crm build",
"build:support": "pnpm --filter @hotcrm/support build",
"build:products": "pnpm --filter @hotcrm/products build",
"build:finance": "pnpm --filter @hotcrm/finance build",
"build:msw": "bash scripts/build-msw.sh",
"build:docs": "pnpm --filter @hotcrm/docs build",
"lint": "pnpm -r --if-present lint",
"test": "vitest run --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"test:watch": "vitest --passWithNoTests",
"test:unit": "vitest run --passWithNoTests __tests__/unit",
"test:integration": "vitest run --passWithNoTests __tests__/integration",
"validate": "objectstack validate",
"compile": "objectstack compile",
"typecheck": "pnpm exec tsc --noEmit",
"test:changed": "pnpm --filter '...[HEAD~1]' exec vitest run --passWithNoTests",
"verify:plugins": "node scripts/verify-plugin-architecture.cjs",
"stats": "bash scripts/check-stats.sh",
"clean": "pnpm -r exec rm -rf dist node_modules",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish",
"seed": "npx tsx scripts/seed.ts",
"seed:reset": "npx tsx scripts/seed.ts --reset"
},
"keywords": [
"crm",
"objectstack",
"salesforce",
"enterprise",
"monorepo",
"plugin-architecture"
],
"author": "HotCRM Team",
"license": "MIT",
"dependencies": {
"@hotcrm/core": "workspace:*",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@hono/node-server": "^1.19.14",
"@object-ui/console": "^3.3.0",
"@objectstack/cli": "^4.0.3",
"@objectstack/driver-memory": "^4.0.3",
"@objectstack/driver-turso": "^4.0.3",
"@objectstack/objectql": "^4.0.3",
"@objectstack/plugin-auth": "^4.0.3",
"@objectstack/plugin-hono-server": "^4.0.3",
"@objectstack/runtime": "^4.0.3",
"@objectstack/service-i18n": "^4.0.3",
"@objectstack/spec": "^4.0.3",
"@objectstack/studio": "^4.0.3",
"@opentelemetry/api": "^1.9.1",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^1.6.1",
"@vitest/ui": "^1.6.1",
"eslint": "^8.57.1",
"hono": "^4.12.12",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
},
"engines": {
"node": ">=20",
"pnpm": ">=10.0.0"
}
}