-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.02 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.02 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
{
"name": "eth-blocks",
"version": "1.0.0",
"description": "",
"main": "src/lambdas.ts",
"engines": {
"node": ">=14.17.0"
},
"scripts": {
"build": "tsc",
"postbuild": "cp package.json dist/package.json && cp package-lock.json dist/package-lock.json && cd dist && npm install --only=production",
"start:dev:puller": "npx ts-node src/start-puller.ts | npx pino-pretty",
"start:dev:calc": "npx ts-node src/start-calc.ts | npx pino-pretty",
"deploy:contract": "npx ts-node src/deploy-contract.ts",
"test": "npx jest -c jest.config.js --detectOpenHandles",
"lint": "npx eslint -c .eslintrc.json src --ext .ts,.js src test",
"lint:fix": "npx eslint -c .eslintrc.json src --ext .ts,.js src test --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aburkut/eth-blocks.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aburkut/eth-blocks/issues"
},
"homepage": "https://github.com/aburkut/eth-blocks#readme",
"devDependencies": {
"@nestjs/testing": "^8.2.6",
"@types/bluebird": "^3.5.36",
"@types/dotenv": "^8.2.0",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"ganache": "^7.0.0",
"jest": "^27.4.7",
"pino-pretty": "^7.3.0",
"solc": "^0.8.11",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4",
"web3": "^1.7.0"
},
"dependencies": {
"@mapbox/dyno": "^1.5.0",
"@nestjs/common": "^8.2.6",
"@nestjs/config": "^1.1.6",
"@nestjs/core": "^8.2.6",
"aws-sdk": "^2.1060.0",
"bluebird": "^3.7.2",
"dotenv": "^14.2.0",
"ethers": "^5.5.3",
"lodash": "^4.17.21",
"nestjs-pino": "^2.5.0",
"pino": "^7.6.3",
"pino-http": "^6.6.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.2"
}
}