forked from idexio/idex-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.95 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@idexio/idex-sdk",
"version": "2.2.0",
"description": "IDEX SDK for Javascript in the browser and Node.js",
"license": "MIT",
"repository": "[email protected]:idexio/idex-sdk-js.git",
"author": "IDEX <[email protected]>",
"main": "dist/index.js",
"scripts": {
"build": "npm-run-all -s clean -s build:*",
"build:tsc": "npx tsc",
"clean": "rm -rf dist",
"generate:docs": "npx documentation readme src/** --markdown-toc-max-depth 3 --readme-file=API.md --section=API --parse-extension ts --shallow --resolve node --config documentation.yaml ",
"generate:docs:commit": "./dev/scripts/generate:docs",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --ext .ts --fix",
"lint:fix:package": "pretty-quick --pattern package.json",
"lint:fix:staged": "lint-staged",
"lint:types": "tsc --noEmit",
"orderbook:demo": "node dist/orderbook/demo.js",
"prepare": "husky install",
"run:quick": "ts-node -T -s -H ./test/quick.ts"
},
"files": [
".eslintignore",
".eslintrc.js",
".nvmrc",
"API.md",
"contracts",
"dist",
"package.json",
"tsconfig.eslint.json",
"tsconfig.json",
"yarn.lock",
"README.md",
"LICENSE"
],
"dependencies": {
"axios": "^0.21.2",
"bignumber.js": "^9.0.1",
"ethers": "5.6.3",
"isomorphic-ws": "^4.0.1",
"qs": "^6.9.6",
"tslib": "^2.1.0",
"uuid": "^8.3.2",
"ws": "^7.4.6"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@types/crypto-js": "^4.0.1",
"@types/node": "^14.14.35",
"@types/qs": "^6.9.6",
"@types/uuid": "^8.3.3",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"commitizen": "^4.2.3",
"conventional-changelog-conventionalcommits": "^4.5.0",
"cz-conventional-changelog": "^3.3.0",
"documentation": "13.2.5",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"husky": "5.1.3",
"lint-staged": "^10.5.4",
"markdownlint-cli": "^0.27.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-plugin-package": "^1.3.0",
"pretty-quick": "^3.1.0",
"semantic-release": "^17.4.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"types": "dist/index.d.ts",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "npm-run-all -p lint:fix:* generate:docs:commit",
"pre-push": "npm-run-all build"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix"
]
}
}