-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.82 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.82 KB
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": "percolator-matchers",
"version": "0.1.0",
"description": "Custom matching programs for Percolator perpetual futures engine",
"scripts": {
"build": "anchor build",
"test": "npx ts-mocha -p ./tsconfig.json -t 1000000 'tests/**/*.test.ts'",
"deploy": "anchor deploy",
"privacy:solver": "ts-node app/privacy-solver/src/index.ts",
"privacy:init-lp": "ts-node cli/privacy/src/init-privacy-lp.ts",
"privacy:submit-intent": "ts-node cli/privacy/src/submit-intent.ts",
"vol:keeper": "ts-node app/vol-keeper/src/index.ts",
"vol:init-market": "ts-node cli/vol/src/init-vol-market.ts",
"vol:trade": "ts-node cli/vol/src/trade-vol.ts",
"jpy:init-market": "ts-node cli/jpy/src/init-jpy-market.ts",
"jpy:trade": "ts-node cli/jpy/src/trade-jpy.ts",
"event:oracle": "ts-node app/event-oracle/src/index.ts",
"event:keeper": "ts-node app/event-keeper/src/index.ts",
"event:trade": "ts-node cli/event/src/trade-event.ts",
"macro:keeper": "ts-node app/macro-keeper/src/index.ts",
"macro:init-market": "ts-node cli/macro/src/init-macro-market.ts",
"macro:init-lp": "ts-node cli/macro/src/index.ts init-lp",
"macro:trade": "ts-node cli/macro/src/index.ts trade",
"macro:status": "ts-node cli/macro/src/index.ts status",
"setup:devnet": "ts-node scripts/setup-devnet.ts",
"backtest": "ts-node scripts/backtest.ts"
},
"dependencies": {
"@solana/web3.js": "^1.95.0",
"@solana/spl-token": "^0.4.0",
"axios": "^1.6.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"bs58": "^5.0.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"ts-node": "^10.9.2",
"ts-mocha": "^10.0.0",
"typescript": "^5.3.0",
"chai": "^4.3.10",
"@types/chai": "^4.3.11",
"mocha": "^10.2.0"
}
}