-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.13 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.13 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
{
"name": "@accordproject/apap-ri",
"version": "1.0.0",
"description": "Accord Project Agreement Protocol, Reference Implementation",
"author": "Accord Project",
"license": "Apache-2",
"keywords": [],
"engines": {
"node": ">=20"
},
"scripts": {
"db:studio": "drizzle-kit studio",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate --config drizzle.config.ts",
"db:migrateprod": "NODE_ENV=production tsc ./scripts/drizzle-gen.ts && node ./scripts/drizzle-migrate.js",
"postinstall": "npm run build",
"drizzle-gen": "tsc ./scripts/drizzle-gen.ts && node ./scripts/drizzle-gen.js",
"build": "tsc -p .",
"watch-build": "tsc -w",
"start": "node dist/index.js",
"watch-start": "nodemon --delay 2 -w dist/ -x 'npm run start'",
"dev": "concurrently -k -p '[{name}]' -n 'typescript,api' -c 'yellow.bold,cyan.bold' npm:watch-build npm:watch-start",
"lint": "tslint --format prose --project .",
"test": "node --experimental-vm-modules node_modules/.bin/jest"
},
"dependencies": {
"@accordproject/cicero-core": "0.25.1-20250328175253",
"@accordproject/concerto-core": "3.21.0",
"@accordproject/concerto-util": "3.20.4",
"@accordproject/template-engine": "2.7.1",
"@modelcontextprotocol/sdk": "1.15.1",
"adm-zip": "0.5.16",
"crypto": "1.0.1",
"dotenv": "16.5.0",
"drizzle-orm": "0.42.0",
"drizzle-zod": "0.7.1",
"express": "4.22.0",
"express-oauth-server": "2.0.0",
"morgan": "1.9.1",
"openapi-backend": "5.12.0",
"postgres": "3.4.5",
"source-map-support": "0.5.10",
"zod": "3.24.3"
},
"devDependencies": {
"@types/adm-zip": "0.5.7",
"@types/express": "4.17.13",
"@types/express-oauth-server": "2.0.8",
"@types/jest": "29.2.5",
"@types/morgan": "1.7.35",
"@types/node": "10.17.60",
"@types/supertest": "6.0.3",
"axios": "1.13.5",
"concurrently": "6.2.0",
"drizzle-kit": "0.31.0",
"jest": "29.7.0",
"nodemon": "1.18.10",
"supertest": "7.1.4",
"ts-jest": "29.0.3",
"tslint": "5.12.1",
"tsx": "4.19.3",
"typescript": "5.8.3",
"wait-on": "3.2.0"
}
}