-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.15 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.15 KB
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
{
"name": "node-iac",
"version": "3.1.1",
"main": "src/app.ts'",
"license": "MIT",
"scripts": {
"start": "ts-node src/app.ts",
"lint": "eslint src/*.ts",
"prod": "node dist/index.js",
"compile": "wireit",
"build": "wireit",
"docker": "docker buildx build -t sirily11/etd-admin-node --platform linux/arm64,linux/amd64 --push . ",
"test": "wireit",
"it": "ts-node src/tests/integration_tests/run.ts",
"release": "release-it --no-requireCleanWorkingDir"
},
"wireit": {
"compile": {
"command": "tsc"
},
"build": {
"command": "ncc build build/app.js -o dist",
"dependencies": [
"compile"
]
},
"test": {
"command": "jest --forceExit --coverage"
}
},
"dependencies": {
"@etherdata-blockchain/common": "^4.3.5",
"@etherdata-blockchain/docker-plan": "^4.3.5",
"@etherdata-blockchain/ip": "^4.3.5",
"@etherdata-blockchain/logger": "^4.3.5",
"@types/dockerode": "^3.3.9",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.33",
"@types/node-cron": "^3.0.1",
"@vercel/ncc": "^0.33.4",
"axios": "^0.27.2",
"axios-retry": "^3.2.5",
"chalk": "^5.0.1",
"dockerode": "^3.3.1",
"dotenv": "^16.0.1",
"http-method-enum": "^1.0.0",
"http-status-codes": "^2.2.0",
"internal-ip": "^7.0.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.3",
"node-cron": "^3.0.0",
"typescript": "^4.6.4",
"web3": "^1.7.3",
"web3-eth-admin": "^1.0.0-beta.55",
"wireit": "^0.4.3"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.0.0",
"@types/chai": "^4.3.1",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"chai": "^4.3.6",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.0",
"nock": "^13.2.4",
"prettier": "^2.6.2",
"release-it": "^15.0.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0"
},
"repository": "https://github.com/etherdata-blockchain/etd-local-admin-node.git",
"author": "sirily11 <sirily1997@gmail.com>"
}