-
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.79 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.79 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": "cnode-next",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "concurrently -n web,api -c blue,green \"pnpm --filter @cnode/web dev\" \"pnpm --filter @cnode/api dev\"",
"build": "pnpm -r build",
"test": "pnpm -r test",
"lint": "oxlint .",
"typecheck": "pnpm -r typecheck",
"verify": "pnpm lint && pnpm typecheck && pnpm test && pnpm build && pnpm gen:openapi && openspec validate --all --strict && pnpm secrets:scan",
"db:push": "pnpm --filter @cnode/db db:push",
"db:push:pg": "pnpm --filter @cnode/db db:push:pg",
"db:migrate": "pnpm --filter @cnode/db db:migrate",
"db:seed": "pnpm --filter @cnode/db db:seed",
"db:generate": "pnpm --filter @cnode/db db:generate",
"migrate:mongo-to-pg": "tsx scripts/migrate-mongo-to-pg.ts",
"migrate:reconcile": "tsx scripts/reconcile-migration.ts",
"smoke:api-contract": "tsx deployment/scripts/smoke-api-contract.ts",
"gen:openapi": "pnpm --filter @cnode/api gen:openapi",
"preflight:github-ids": "tsx deployment/scripts/preflight-github-id-uniqueness.ts",
"format": "oxfmt .",
"secrets:scan": "gitleaks git --config .gitleaks.toml --redact --no-banner",
"secrets:scan:staged": "gitleaks git --config .gitleaks.toml --redact --no-banner --pre-commit --staged",
"hooks:install": "husky",
"prepare": "husky"
},
"dependencies": {
"@cnode/shared": "workspace:*",
"mongodb": "^5.9.2",
"pg": "^8.22.0"
},
"devDependencies": {
"@fission-ai/openspec": "1.6.0",
"@types/pg": "^8.20.0",
"concurrently": "^9.1.0",
"husky": "^9.1.7",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"tsx": "^4.23.1",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@11.15.1"
}