forked from orbs-network/ethereum-writer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.14 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
{
"name": "@orbs-network/ethereum-writer",
"private": true,
"version": "0.0.1",
"description": "Node service to send Ethereum transactions for elections lifecycle (like auto vote unready)",
"author": "Tal Kol <[email protected]>",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"!dist/**/*.test.js"
],
"engines": {
"node": ">=12.14.0"
},
"scripts": {
"typecheck": "tsc --noEmit --skipLibCheck",
"lint": "eslint . --ext .ts,.tsx -f codeframe",
"pretest": "npm run typecheck && npm run lint",
"clean": "rimraf ./dist/",
"prebuild": "npm run clean",
"build": "tsc --skipLibCheck -p ./tsconfig.prod.json && ./boyar/create-version-file.sh && docker build -t local/ethereum-writer .",
"build:quick": "tsc --skipLibCheck -p ./tsconfig.prod.json",
"test": "ava --verbose --serial",
"test:quick": "echo '-- TEST --' && ava --verbose",
"test:e2e": "ava --verbose --timeout=10m --serial --config ./ava.config.e2e.js",
"prepack": "npm run build",
"prettify": "npx prettier \"src/**/*.ts\" --write && npx prettier \"e2e/**/*.ts\" --write",
"start": "node --async-stack-traces ./dist/main.js"
},
"devDependencies": {
"@types/child-process-promise": "^2.2.1",
"@types/lodash": "^4.14.149",
"@types/mock-fs": "^4.10.0",
"@types/node": "^14.14.16",
"@types/node-fetch": "^2.5.5",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"ava": "^3.5.1",
"bn.js": "^5.1.1",
"child-process-promise": "^2.2.1",
"docker-compose-mocha": "^1.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"mock-fs": "^4.11.0",
"nock": "^12.0.3",
"rimraf": "^3.0.2",
"ts-node": "^8.8.1",
"ts-retry-promise": "^0.2.0",
"typescript": "~3.7.5"
},
"dependencies": {
"@orbs-network/orbs-ethereum-contracts-v2": "0.0.38",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"orbs-client-sdk": "^2.3.1",
"orbs-signer-client": "^1.0.0",
"ts-json-decode": "^0.5.1",
"web3": "1.2.6",
"yargs": "^15.3.1"
}
}