-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.64 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
{
"name": "@mangrovedao/reliable-event-subscriber",
"version": "1.1.30-0",
"main": "dist/index.js",
"author": "Louis-Amas <[email protected]>",
"license": "BSD-2-Clause",
"typings": "dist/index.d.ts",
"outDir": "./",
"files": [
"dist"
],
"publishConfig": {
"@mangrovedao:registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@espendk/json-file-reporter": "^1.4.2",
"@prisma/client": "4.14.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@types/object-inspect": "^1.8.1",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.2.1",
"mocha": "^10.2.0",
"mocha-multi-reporters": "^1.5.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.8.7",
"prisma": "4.14.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,ts,css,md,json,mjs}": "prettier --write"
},
"scripts": {
"precommit": "lint-staged",
"prepack": "yarn run build",
"build": "tsc --build",
"lint": "tsc --noEmit && eslint \"**/*.ts\" --quiet --fix",
"serve": "ts-node ./src",
"start": "node ./dist",
"test": "cross-env NODE_ENV=test nyc --reporter=lcov mocha --config test/mocha/config/unit-tests.json --exit"
},
"dependencies": {
"@ethersproject/providers": "^5.7.2",
"async-mutex": "^0.4.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"isomorphic-ws": "^5.0.0",
"ws": "^8.13.0"
},
"packageManager": "[email protected]"
}