-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 1.98 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@alcorexchange/alcor-swap-sdk",
"version": "1.0.391",
"description": "",
"main": "build/index.js",
"scripts": {
"start:dev": "npx nodemon",
"build": "rimraf ./build && babel src --out-dir build --extensions \".ts\"",
"start": "npm run build && node build/index.js",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alcorexchange/alcor-v2-sdk"
},
"keywords": [
"alcor",
"antelope",
"eosio",
"amm",
"dex"
],
"author": "alcorexchange",
"license": "ISC",
"bugs": {
"url": "https://github.com/alcorexchange/alcor-v2-sdk/issues"
},
"homepage": "https://github.com/alcorexchange/alcor-v2-sdk#readme",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/big.js": "^4.0.5",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"babel-plugin-transform-jsbi-to-bigint": "^1.4.0",
"dotenv": "^16.3.1",
"enf-eosjs": "^23.0.0",
"eslint": "^8.32.0",
"ethers": "^5.0.8",
"jest": "^28.1.1",
"mongoose": "5.13.14",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"redis": "^4.6.10",
"rimraf": "^4.1.1",
"ts-jest": "^28.0.4",
"ts-node": "^10.9.2",
"typescript": "^4.9.4",
"workerpool": "^9.2.0"
},
"dependencies": {
"big.js": "^5.2.2",
"decimal.js-light": "^2.5.0",
"eos-common": "^0.12.0",
"eosjs": "^22.1.0",
"eosjs-account-name": "2.3.0",
"jsbi": "^4.3.0",
"lodash": "^4.17.21",
"mnemonist": "^0.39.8",
"msgpack-lite": "^0.1.26",
"node-fetch": "2",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3",
"toformat": "^2.0.0"
}
}