-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "@usher/listener",
"version": "1.0.0",
"description": "Usher Listener Node",
"repository": "[email protected]:usherlabs/core.git",
"author": "Ryan Soury <[email protected]>",
"license": "AGPL-3.0",
"bin": {
"listener": "./bin/listener"
},
"files": [
"/dist"
],
"main": "./dist/index.js",
"types": "index.d.ts",
"private": true,
"scripts": {
"dev": "ts-node ./src/main.ts",
"build": "npm-run-all -s clean compile cmd:build",
"clean": "del dist build",
"compile": "tsc --project ./tsconfig.build.json && resolve-tspaths",
"cmd:build": "esbuild ./src/main.js --bundle --outdir=build --platform=node",
"cmd:watch": "esbuild ./src/main.js --bundle --outdir=build --platform=node --watch",
"ts": "tsc --noEmit",
"lint": "eslint -c ./.eslintrc ./src/**/*.ts"
},
"keywords": [],
"dependencies": {
"arangojs": "^7.8.0",
"camelcase-keys": "^7.0.2",
"dotenv": "^16.0.0",
"ethers": "^5.6.8",
"lodash": "^4.17.21",
"pino": "^7.11.0"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.26",
"esbuild": "^0.14.42",
"npm-run-all": "^4.1.5",
"resolve-tspaths": "^0.6.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
}
}