-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.32 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.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
{
"name": "openhermit-monorepo",
"private": true,
"version": "0.0.0",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"workspaces": [
"apps/*",
"apps/channels/*",
"packages/*"
],
"scripts": {
"clean:build": "node scripts/clean-build.mjs",
"build": "npm run clean:build && tsc -b && npm run build:ui -w @openhermit/gateway && npm run build:ui -w @openhermit/web",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run build && export $(cat .env | xargs) && DATABASE_URL=$DATABASE_URL_TEST node --import tsx --test apps/agent/test/*.test.ts apps/cli/test/*.test.ts apps/web/test/*.test.ts packages/shared/test/*.test.ts",
"dev:gateway": "node -C development --import tsx apps/gateway/src/index.ts",
"dev:web": "node -C development --import tsx apps/web/src/index.ts",
"dev:cli": "node -C development --import tsx apps/cli/src/cli.ts",
"dev:studio": "export $(cat .env | xargs) && cd packages/store && npx drizzle-kit studio",
"start:gateway": "node apps/gateway/dist/index.js",
"start:web": "node apps/web/dist/index.js",
"start:cli": "node apps/cli/dist/cli.js"
},
"devDependencies": {
"@types/node": "^22.13.10",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"dependencies": {
"croner": "^10.0.1"
}
}