-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.54 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
{
"name": "harmony-explorer-2021",
"version": "0.1.1",
"main": "src/index.ts",
"license": "ISC",
"author": "[email protected]",
"scripts": {
"dev": "nodemon",
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"start:prod": "node dist/main.js",
"build": "webpack --config webpack.config.js && cp -r src/store/postgres/sql dist && cp .env dist && cp src/api/webSocket/index.html dist",
"build:dev": "tsc -w",
"test": "mocha -w -r ts-node/register src/**/*.test.ts",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint './src/'"
},
"dependencies": {
"@grpc/proto-loader": "^0.6.1",
"@harmony-js/crypto": "^0.1.56",
"@sentry/node": "^5.24.2",
"@types/bs58": "^4.0.1",
"@types/lru-cache": "^5.1.0",
"abort-controller": "^3.0.0",
"aws-sdk": "^2.934.0",
"body-parser": "^1.19.0",
"bs58": "^4.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ethereum-bloom-filters": "^1.0.9",
"express": "^4.17.1",
"grpc": "^1.24.6",
"grpc-reflection-js": "^0.1.1",
"ipfs-http-client": "^50.1.1",
"lru-cache": "^6.0.0",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.7",
"pg": "^8.5.1",
"qs": "^6.9.1",
"rpc-websockets": "^7.4.11",
"socket.io": "^4.0.1",
"twilio": "^3.48.1",
"typescript": "^4.2.4",
"web-push": "^3.4.4",
"web3": "^1.3.5",
"zerg": "^2.1.2"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.2",
"@types/node": "^13.1.8",
"@types/node-fetch": "^2.5.4",
"@types/pg": "^7.14.11",
"@types/qs": "^6.9.0",
"@types/validator": "^13.1.3",
"@types/web-push": "^3.3.0",
"@types/websocket": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"chai": "^4.2.0",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.2",
"ts-loader": "^9.1.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript-transform-paths": "^2.2.3",
"webpack": "^5.35.0",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint",
"pretty-quick --staged"
]
}
}