-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
121 lines (121 loc) · 3.28 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"dependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-logical-assignment-operators": "^7.11.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.11.5",
"@godaddy/terminus": "^4.4.1",
"@types/bluebird": "^3.5.32",
"@types/compression": "^1.7.0",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.8",
"@types/helmet": "0.0.48",
"@types/morgan": "^1.9.1",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.0",
"@types/ws": "^7.2.6",
"babel-plugin-source-map-support": "^2.1.3",
"bn.js": "^5.1.3",
"bullmq": "^1.9.0",
"compression": "^1.7.4",
"core-js": "^3.6.5",
"decimal.js": "^10.2.0",
"errorhandler": "^1.5.1",
"ethereumjs-wallet": "^1.0.0",
"express": "^4.17.1",
"helmet": "^4.1.1",
"ioredis": "^4.17.3",
"mariadb": "^2.4.2",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"pg": "^8.3.3",
"pg-hstore": "^2.3.3",
"rpc-websockets": "^7.4.6",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"source-map-support": "^0.5.19",
"sqlite3": "^5.0.0",
"tedious": "^9.2.1",
"typescript": "^4.0.3",
"web3": "^1.3.0",
"web3-core": "^1.3.0",
"web3-eth-contract": "^1.3.0",
"web3-utils": "^1.3.0",
"ws": "^7.3.1"
},
"devDependencies": {
"@typechain/web3-v1": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"import-sort-style-module": "^6.0.0",
"prettier": "^2.1.2",
"prettier-plugin-import-sort": "0.0.4",
"typechain": "^2.0.0"
},
"scripts": {
"typecheck": "tsc",
"lint": "eslint --ext .ts,.tsx src",
"lint:fix": "eslint --ext .ts,.tsx --fix src",
"build": "babel src -d dist -x .ts,.tsx",
"migrate": "sequelize db:migrate",
"serve": "node dist/index.js"
},
"eslintConfig": {
"env": {
"es2020": true,
"node": true
},
"extends": [
"eslint:all",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/all",
"airbnb-typescript/base",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"ignorePatterns": [
"dist"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"root": true,
"rules": {
"max-classes-per-file": "off",
"no-param-reassign": "off",
"no-await-in-loop": "off",
"no-console": "off",
"@typescript-eslint/prefer-readonly-parameter-types": "off",
"@typescript-eslint/prefer-function-type": "off",
"prettier/prettier": [
"error",
{
"singleQuote": true
},
{
"usePrettierrc": false
}
]
}
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
}
}