-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.75 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
45
46
47
{
"name": "escrow_program",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:escrow-native-mint": "ts-node -r dotenv/config client/escrow_native_mint.ts",
"start:escrow-cancel": "ts-node -r dotenv/config client/escrow_cancel.ts",
"start-with-test-validator": "start-server-and-test 'solana-test-validator --reset --quiet' http://localhost:8899/health start",
"lint": "eslint --ext .ts client/* && prettier --check \"client/**/*.ts\"",
"lint:fix": "eslint --ext .ts client/* --fix && prettier --write \"client/**/*.ts\"",
"clean": "npm run clean:program-rust",
"build:program-rust": "cargo build-bpf --manifest-path=./rust/Cargo.toml --bpf-out-dir=dist/program",
"clean:program-rust": "cargo clean --manifest-path=./rust/Cargo.toml && rm -rf ./dist",
"test:program-rust": "cargo test-bpf --manifest-path=./rust/Cargo.toml",
"pretty": "prettier --write '{,src/**/}*.ts'"
},
"keywords": [],
"author": "Tomoaki Imai",
"license": "MIT",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/bs58": "^4.0.1",
"@types/eslint": "^7.2.4",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/mz": "^2.7.4",
"@types/prettier": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"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.2"
},
"dependencies": {
"@solana/buffer-layout": "^3.0.0",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.25.0",
"borsh": "^0.6.0",
"dotenv": "^10.0.0",
"mz": "^2.7.0",
"yaml": "^1.10.2"
}
}