-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.45 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.45 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
{
"name": "constitution-engine",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"migrate:generate": "bun x drizzle-kit generate",
"migrate:push": "bun x drizzle-kit push",
"seed": "bun run src/db/seed.ts",
"up": "docker-compose up -d",
"down": "docker-compose down",
"dev": "bun run up && bun run --hot src/server.ts",
"build": "bun build src/server.ts --outdir dist --target bun",
"logs": "docker-compose logs -f postgres",
"test": "bun test src/core/learning/__tests__/*.test.ts src/core/policy/__tests__/evaluator.test.ts src/core/memory/__tests__/assembler.test.ts",
"test:unit": "bun test src/core/learning/__tests__/*.test.ts src/core/policy/__tests__/evaluator.test.ts src/core/memory/__tests__/assembler.test.ts",
"test:integration": "bun test src/core/policy/__tests__/loader.test.ts src/routes/__tests__/*.test.ts",
"test:all": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@types/pg": "^8.15.6",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.7",
"drizzle-zod": "^0.8.3",
"express": "^5.1.0",
"pg": "^8.16.3",
"pino-http": "^11.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/bun": "^1.3.1",
"@types/express": "^5.0.5",
"drizzle-kit": "^0.31.6",
"pino-pretty": "^13.1.2"
}
}