-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 2.86 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "nonce-tracker",
"version": "0.0.1",
"description": "Tracks nonces of transactions",
"main": "index.js",
"private": true,
"scripts": {
"clean": "rm -rf build",
"dev": "babel-node --max-old-space-size=5024 src/index.js",
"indexer": "babel-node --max-old-space-size=5024 src/get-power-and-signerlist.js",
"dev-watcher": "babel-node --max-old-space-size=7000 src/watcher.js",
"build-server": "babel src/ --out-dir build/",
"build": "npm run clean && npm run build-server",
"start": "babel-node --max-old-space-size=5024 src/index.js",
"start-watcher": "node build/watcher.js",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint --ext .js,.vue --ignore-path .gitignore --ignore-pattern '!.eslintrc.js' . --fix",
"sequelize": "sequelize",
"db:migrate": "npm run build && sequelize db:migrate",
"db:migrate:undo:all": "npm run build && sequelize db:migrate:undo:all",
"db:reset": "npm run build && sequelize db:migrate:undo:all && sequelize db:migrate"
},
"pre-commit": [
"lint",
"build"
],
"repository": {
"type": "git",
"url": "git+https://gitlab.com/maticnetwork/staking-api.git"
},
"keywords": [
"ethereum",
"matic"
],
"author": "Vamsi Reddy <[email protected]>",
"license": "ISC",
"dependencies": {
"@maticnetwork/meta": "^2.4.9",
"abi-decoder": "^2.4.0",
"axios": "^0.21.1",
"bee-queue": "^1.2.2",
"bignumber.js": "^7.2.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"eth-sig-util": "^2.5.2",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-block": "^2.0.1",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^5.2.0",
"ethers": "^5.0.32",
"express": "^4.16.3",
"express-list-endpoints": "^3.0.1",
"fs": "^0.0.1-security",
"graphql": "^15.4.0",
"graphql-request": "^3.4.0",
"install": "^0.13.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.20",
"merkle-patricia-tree": "^2.3.1",
"moment": "^2.22.2",
"mongodb": "^3.6.4",
"mongoose": "^5.11.15",
"mysql2": "^1.5.3",
"node-cron": "^2.0.3",
"redis": "^2.8.0",
"rlp": "^2.2.6",
"sequelize": "^4.38.0",
"sequelize-cli": "^4.0.0",
"swagger-jsdoc": "^6.0.0",
"swagger-ui-express": "^4.1.6",
"uuid": "^3.3.2",
"web3": "^1.3.0",
"winston": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"eslint": "^5.0.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"nodemon": "^2.0.6",
"pre-commit": "^1.2.2"
}
}