-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 2.1 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
48
49
50
51
52
53
54
55
{
"name": "solana-trie-example",
"version": "0.0.1",
"author": "Michał Nazarewicz <mina86@mina86.com>",
"scripts": {
"start": "ts-node solana/trie-example/client/main.ts",
"start-with-test-validator": "start-server-and-test 'solana-test-validator --reset --quiet' http://localhost:8899/health start",
"lint": "eslint --ext .ts solana/trie-example/* && prettier --check \"solana/trie-example/**/*.ts\"",
"lint:fix": "eslint --ext .ts solana/trie-example/* --fix && prettier --write \"solana/trie-example/**/*.ts\"",
"clean": "npm run clean:trie-example",
"build:trie-example": "cargo build-sbf --manifest-path=solana/trie-example/Cargo.toml --sbf-out-dir=dist/trie-example",
"deploy:trie-example": "solana program deploy dist/trie-example/trie.so",
"clean:trie-example": "cargo clean --manifest-path=solana/trie-example/Cargo.toml && rm -rf ./dist",
"test:trie-example": "cargo test-bpf --manifest-path=solana/trie-example/Cargo.toml",
"pretty": "prettier --write 'solana/trie-example/client/*.ts'"
},
"dependencies": {
"@coral-xyz/anchor": "^0.27.0",
"@metaplex-foundation/mpl-token-metadata": "^3.1.2",
"@metaplex-foundation/umi": "^0.9.0",
"@solana/spl-token": "^0.3.10",
"@solana/web3.js": "^1.91.3",
"borsher": "^3.5.0",
"bs58": "^5.0.0",
"mz": "^2.7.0",
"tsconfig": "^7.0.0",
"yaml": "^2.0.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/eslint": "^8.2.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/mocha": "^9.0.0",
"@types/mz": "^2.7.2",
"@types/prettier": "^2.1.5",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"chai": "^4.3.4",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.0.3",
"prettier": "^2.1.2",
"start-server-and-test": "^2.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^4.0.5"
},
"engines": {
"node": ">=14.0.0"
}
}