-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "safe-cex",
"version": "8.6.5",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"dev": "tsc -w",
"lint-ts": "tsc --noEmit",
"lint-js": "eslint --ext .js,.ts src",
"lint": "npm run lint-ts && npm run lint-js",
"build": "rm -rf dist && tsc",
"changelog": "npx conventional-changelog-cli -p angular -i CHANGELOG.md -s -r 0",
"prepublish": "npm run build",
"postpublish": "npm run changelog"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@types/create-hash": "^1.2.2",
"@types/create-hmac": "^1.1.0",
"@types/lodash": "^4.14.191",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.33.0",
"eslint-config-algolia": "^22.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"axios": "^1.3.3",
"axios-rate-limit": "^1.3.0",
"axios-retry": "^4.0.0",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"dayjs": "^1.11.7",
"lodash": "^4.17.21",
"nanoid": "~5.0.6",
"p-iteration": "^1.1.8",
"qs": "^6.11.0",
"tiny-emitter": "^2.1.0"
}
}