-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.23 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
{
"name": "amm",
"version": "0.0.1",
"description": "",
"repository": {
"type": "git",
"url": ""
},
"keywords": [],
"author": "alex",
"license": "Apache",
"type": "module",
"scripts": {
"test": "node js/test/test.js",
"init": "node js/test/init.js",
"deploy": "solana program deploy target/deploy/amm.so",
"start-test-validator": "solana-test-validator --reset",
"start-test-validator2": "solana-test-validator",
"lint": "eslint --ext .ts src/client/* && prettier --check \"src/client/**/*.ts\"",
"lint:fix": "eslint --ext .ts src/client/* --fix && prettier --write \"src/client/**/*.ts\"",
"pretty": "prettier --write '{,src/**/}*.ts'",
"proxy": "export https_proxy=http://127.0.0.1:7890"
},
"dependencies": {
"@project-serum/anchor": "=0.21.0",
"@project-serum/anchor-cli": "=0.21.0",
"@pythnetwork/client": "^2.2.0",
"@solana/spl-token": "0.1.8",
"@solana/web3.js": "1.36.0",
"base58": "^2.0.1",
"borsh": "^0.4.0",
"bs58": "^4.0.1",
"mz": "^2.7.0"
},
"devDependencies": {
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2"
},
"engines": {
"node": "14.x"
}
}