-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.83 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": "gas-oracle",
"version": "0.0.1",
"description": "Multichain gas oracle",
"keywords": [
"gas",
"eip1559",
"gas oracle",
"ethereum",
"bsc",
"arbitrum"
],
"main": "./build/index.js",
"scripts": {
"build": "npm run clean && npm run lint && tsc -p tsconfig.json",
"start": "npm run build && pm2 startOrRestart pm2.json --update-env",
"start:dev": "npm run start -- --watch && tsc -p tsconfig.json --watch",
"stop": "pm2 stop pm2.json",
"lint": "eslint . --ext .js,.ts && tsc --noEmit --pretty",
"lint:autofix": "eslint . --ext .js,.ts,.tsx --fix",
"test": "npm run lint && jest --config ./jest.config.js",
"clean": "rm -rf build/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akropolisio/gas-oracle.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/akropolisio/gas-oracle/issues"
},
"homepage": "https://github.com/akropolisio/gas-oracle#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"node-cache": "^5.1.2",
"web3": "^1.7.0",
"web3-core-helpers": "^1.7.0",
"web3-utils": "^1.7.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14.0.0"
}
}