-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "hello_world",
"version": "1.2.1",
"description": "",
"main": "services/index.js",
"types": "services/index.d.js",
"repository": {
"type": "git",
"url": "git+https://github.com/coin98/coin98-starship.git"
},
"author": "Coin98",
"license": "MIT",
"bugs": {
"url": "https://github.com/coin98/coin98-starship/issues"
},
"homepage": "https://github.com/coin98/coin98-starship#readme",
"scripts": {
"build:rs": "anchor build -- --features mainnet",
"build:ts": "tsc --build",
"clean": "git clean -fxd",
"deploy:rs": "solana program deploy ./target/deploy/coin98_starship.so --program-id ./tests/coin98_starship.keypair.json --url localhost",
"test:rs": "cargo test-sbf -- --nocapture",
"test:ts": "ts-mocha -p ./tsconfig.mocha.json ./tests/*.spec.ts --timeout 60000"
},
"dependencies": {
"@project-serum/borsh": "^0.2.5",
"@solana/web3.js": "^1.78.0",
"bn.js": "^5.2.1",
"crypto-js": "^4.1.1",
"keccak": "^3.0.2",
"moment": "^2.29.3",
"node-fetch": "^3.3.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/chai": "^4.3.0",
"@types/crypto-js": "^4.1.1",
"@types/keccak": "^3.0.1",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"dotenv": "^16.0.0",
"mocha": "^9.0.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.7.4"
}
}