-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·65 lines (65 loc) · 1.66 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
{
"name": "@aindev/ain-worker-docker",
"version": "0.0.1",
"description": "AIN Connect Worker Docker",
"keywords": [
"ainetwork",
"ain",
"ainconnect",
"worker"
],
"author": "AIN Dev Team",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"devDependencies": {
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.5",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"dependencies": {
"@ainblockchain/ain-util": "^1.1.6",
"@google-cloud/storage": "^5.8.1",
"@types/dockerode": "^3.2.0",
"@types/express": "^4.17.8",
"@types/hdkey": "^0.7.1",
"@types/node": "^12.0.1",
"@types/sinon": "^9.0.8",
"axios": "^0.21.0",
"bip39": "^3.0.2",
"commander": "^6.2.0",
"deep-object-diff": "^1.1.0",
"dockerode": "^3.2.1",
"express": "^4.17.1",
"firebase": "^8.0.1",
"hdkey": "^2.0.1",
"js-base64": "^3.5.2",
"queue-typescript": "^1.0.1",
"sinon": "^9.2.0",
"winston": "^3.2.1",
"winston-slack-webhook-transport": "^2.0.1",
"xhr2": "^0.2.0"
},
"scripts": {
"test": "jest",
"build": "./build.sh",
"start": "tsc && node dist/index.js serve",
"lint": "eslint src/*.ts src/**/*.ts src/**/**/*.ts src/**/**/**/*.ts",
"lint:fix": "eslint --fix src/*.ts src/**/*.ts src/**/**/*.ts src/**/**/**/*.ts"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn lint"
}
}
}