forked from Cardinal-Cryptography/common-amm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 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
{
"name": "common-amm",
"version": "0.1.0",
"private": true,
"scripts": {
"compile": "rm -rf /types && typechain-compiler --noCompile",
"deploy-local": "source scripts/local_env && ts-node scripts/amm/deploy.ts",
"deploy-stable": "ts-node ./scripts/amm/stablepool/deploy.ts",
"create-tokens-local": "source scripts/local_env && ts-node scripts/amm/create_tokens.ts",
"add-liquidity-local": "source scripts/local_env && ts-node scripts/amm/add_liquidity.ts",
"spawn-dex-data": "source scripts/local_env && ts-node scripts/amm/spawn_dex_data.ts",
"format": "prettier --write ."
},
"dependencies": {
"@727-ventures/typechain-compiler": "^1.1.0",
"@727-ventures/typechain-types": "^1.1.0",
"@polkadot/api": "^10.9.1",
"@polkadot/api-contract": "^10.9.1",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"dotenv": "^16.4.5",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^5.1.0"
},
"devDependencies": {
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}