-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.36 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
{
"name": "@mercurial-finance/stable-swap-n-pool",
"version": "0.1.0",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json && tsc -p tsconfig.esm.json",
"start": "tsc -w",
"test-pool": "ts-mocha -p tsconfig.json tests/**/*.spec.ts",
"start-with-test-validator": "start-server-and-test 'solana-test-validator --bpf-program MERLuDFBMmsHnsBPZw2sDQZHvXFMwp8EdjudcU2HKky ../../program/target/deploy/mercurial_stable_swap_n_pool.so --reset --quiet' http://localhost:8899/health 'rushx test-pool'",
"load-pool": "ts-node --files --project tsconfig.json cli/loadPool.ts",
"initialize-pool": "ts-node --files --project tsconfig.json cli/initializePool.ts"
},
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@project-serum/borsh": "^0.2.2",
"@solana/spl-token": "^0.1.5",
"@solana/web3.js": "^1.15.0",
"bn.js": "^5.2.0",
"buffer-layout": "^1.2.0",
"dotenv": "~10.0.0",
"ts-node": "^10.0.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4.0.1",
"@types/mocha": "^9.0.3",
"@types/node": "^16.10.1",
"bs58": "^4.0.1",
"mocha": "^9.2.2",
"start-server-and-test": "^1.12.3",
"ts-mocha": "^9.0.0",
"typescript": "^4.3.4"
}
}