-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.84 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"scripts": {
"build:types": "pnpm tsc --build tsconfig.build.json ",
"build": "node ./scripts/build.mjs",
"build:release": "pnpm run clean && pnpm build:types && pnpm build",
"clean:tsc": "pnpm tsc --build --clean tsconfig.build.json",
"clean": "pnpm run clean:tsc",
"publish:npm": "pnpm -r publish --access public --no-git-checks",
"publish:ci": "pnpm run build:release && pnpm publish:npm",
"lint": "eslint ./packages --ext .js,.ts,.tsx",
"test": "jest",
"test:one": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/runtime": "^7.17.9",
"@ethersproject/abi": "^5.6.0",
"@ethersproject/address": "^5.6.0",
"@ethersproject/solidity": "^5.6.0",
"@polkadot/api": "^9.6.2",
"@polkadot/dev": "0.65.108",
"@polkadot/util-crypto": "^10.1.11",
"@types/big.js": "^6.1.3",
"@types/lodash": "^4.14.180",
"@zenlink-dex/sdk-api": "workspace:^0.0.3",
"@zenlink-dex/sdk-core": "workspace:^0.0.3",
"@zenlink-dex/sdk-router": "workspace:^0.0.3",
"babel-jest": "^27.5.1",
"big.js": "^6.1.1",
"bignumber.js": "^9.0.2",
"decimal.js-light": "^2.5.1",
"dotenv": "^16.0.0",
"ethers": "^5.6.2",
"jest": "^27.5.1",
"jest-config": "^27.5.1",
"jsbi": "^4.2.0",
"lodash": "^4.17.21",
"rxjs": "^7.5.5",
"tiny-invariant": "^1.2.0",
"toformat": "^2.0.0",
"ts-jest": "^27.1.4"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.29.4"
}
}