-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.3 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "switchboard-monorepo",
"version": "1.0.0",
"description": "Switchboard - Sub-400ms Cross-Chain Coordination Platform",
"private": true,
"workspaces": [
"packages/programs/state-oracle",
"packages/programs/coordinator",
"packages/programs/test-simple",
"packages/sdk",
"packages/services/*",
"packages/demo"
],
"scripts": {
"build": "lerna run build",
"build:services": "lerna run build --scope=\"@switchboard/services-*\"",
"build:customer-api": "lerna run build --scope=\"@switchboard/customer-api\"",
"build:core-engine": "lerna run build --scope=\"@switchboard/core-engine\"",
"dev": "lerna run dev --parallel",
"dev:customer-api": "lerna run dev --scope=\"@switchboard/customer-api\"",
"dev:core-engine": "lerna run dev --scope=\"@switchboard/core-engine\"",
"dev:demo": "lerna run dev --scope=\"@switchboard/demo\"",
"start": "lerna run start --parallel",
"start:customer-api": "lerna run start --scope=\"@switchboard/customer-api\"",
"start:core-engine": "lerna run start --scope=\"@switchboard/core-engine\"",
"clean": "lerna run clean && rimraf node_modules",
"clean:dist": "lerna run clean",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"format": "lerna run format",
"test": "jest --config=test/jest.config.js",
"test:unit": "jest --selectProjects unit",
"test:integration": "jest --selectProjects integration",
"test:e2e": "jest --selectProjects e2e",
"test:performance": "jest --selectProjects performance",
"test:watch": "jest --watch --selectProjects unit",
"test:coverage": "jest --coverage --selectProjects unit integration",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"typecheck": "lerna run type-check",
"postinstall": "lerna bootstrap",
"release": "lerna version && lerna publish",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"setup:dev": "npm run build && npm run docker:up",
"setup:test": "npm run build && npm run test:integration",
"benchmark": "node scripts/benchmark.js",
"validate:config": "./scripts/validate-config.sh",
"docs:serve": "cd docs && python3 -m http.server 8080"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"jest": "^29.5.0",
"jest-html-reporter": "^3.10.2",
"jest-junit": "^16.0.0",
"lerna": "^7.1.4",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"axios": "^1.6.2",
"node-fetch": "^3.3.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cryptuon/switchboard.git"
},
"keywords": [
"cross-chain",
"solana",
"state-sync",
"interoperability",
"blockchain"
],
"author": "Cryptuon Research <contact@cryptuon.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cryptuon/switchboard/issues"
},
"documentation": "https://docs.cryptuon.com/switchboard/",
"homepage": "https://switchboard.cryptuon.com/"
}