-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.6 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
{
"name": "@hastobegood/crypto-clients",
"version": "1.0.0",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/hastobegood/crypto-clients.git"
},
"engines": {
"node": ">=14"
},
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "yarn husky install",
"clean": "yarn workspaces run clean",
"build": "yarn workspaces run build",
"bundle": "yarn workspaces run bundle",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"lint:report": "yarn workspaces run lint:report",
"test": "yarn workspaces run test",
"test:coverage": "yarn workspaces run test:coverage",
"version:binance": "yarn workspace @hastobegood/crypto-clients-binance version",
"publish:binance": "yarn workspace @hastobegood/crypto-clients-binance publish"
},
"devDependencies": {
"@types/jest": "^28.1.0",
"@types/lodash": "^4.14.182",
"@types/node": "14",
"@types/randomstring": "^1.1.8",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-sonar-reporter": "^2.0.0",
"lodash": "^4.17.21",
"mockdate": "^3.0.5",
"prettier": "^2.6.2",
"randomstring": "^1.2.2",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
}
}