-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (42 loc) · 1.68 KB
/
package.json
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
{
"name": "solana-bridge-program",
"version": "0.0.1",
"description": "",
"scripts": {
"build:bridge": "cargo build-bpf --manifest-path=./bridge/program/Cargo.toml --bpf-out-dir=./dist/program",
"clean:bridge": "cargo clean --manifest-path=./bridge/program/Cargo.toml && rm -rf ./dist",
"test:bridge": "cargo test-bpf --manifest-path=./bridge/program/Cargo.toml",
"build:commission": "cargo build-bpf --manifest-path=./commission/program/Cargo.toml --bpf-out-dir=./dist/program",
"clean:commission": "cargo clean --manifest-path=./commission/program/Cargo.toml && rm -rf ./dist",
"test:commission": "cargo test-bpf --manifest-path=./commission/program/Cargo.toml",
"build:upgrade": "cargo build-bpf --manifest-path=./upgrade/program/Cargo.toml --bpf-out-dir=./dist/program",
"clean:upgrade": "cargo clean --manifest-path=./upgrade/program/Cargo.toml && rm -rf ./dist",
"test:upgrade": "cargo test-bpf --manifest-path=./upgrade/program/Cargo.toml"
},
"dependencies": {
"@solana/web3.js": "^1.7.0",
"borsh": "^0.6.0",
"mz": "^2.7.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/eslint": "^7.2.4",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/mz": "^2.7.2",
"@types/prettier": "^2.1.5",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.1.2",
"start-server-and-test": "^1.11.6",
"ts-node": "^10.0.0",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=14.0.0"
}
}