-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "flamincome-tlv-alerts",
"private": true,
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src --ext ts --no-ignore --fix && prettier --write \"src/**/*.ts\"",
"start": "node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "corollari",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.11",
"@types/node-fetch": "^2.5.8",
"@types/redis": "^2.8.28",
"@types/ws": "^7.4.0",
"bn.js": "^5.1.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"redis": "^3.0.2",
"web3": "^1.3.4",
"ws": "^7.4.3"
},
"engines": {
"node": "12.x"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"prettier": "^2.2.1",
"typescript": "^3.9.9"
}
}