-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.53 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
{
"name": "cacti-interoperability-bridge",
"version": "1.0.0",
"private": true,
"description": "Production-grade blockchain interoperability bridge inspired by Hyperledger Cacti",
"author": "Cacti Bridge Contributors",
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"test:coverage": "pnpm -r run test:coverage",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"**/*.{ts,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,json,md,yml,yaml}\"",
"dev": "concurrently --prefix-colors \"cyan,green\" -n \"api,relay\" \"pnpm dev:api\" \"pnpm dev:relay\"",
"dev:api": "pnpm --filter @cacti-bridge/api-gateway run dev",
"dev:relay": "pnpm --filter @cacti-bridge/relay-service run dev",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"docker:build": "docker-compose build",
"clean": "pnpm -r run clean",
"seed": "ts-node scripts/seed.ts"
},
"devDependencies": {
"@types/node": "^20.12.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}