-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.33 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.33 KB
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
{
"name": "edge-change-server",
"version": "0.3.0",
"private": true,
"description": "Detects whether addresses have on-chain changes",
"homepage": "https://github.com/EdgeApp/edge-change-server#readme",
"bugs": {
"url": "https://github.com/EdgeApp/edge-change-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EdgeApp/edge-change-server.git"
},
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build": "sucrase -q -t typescript,imports -d ./lib ./src",
"clean": "rimraf lib",
"cli": "node -r sucrase/register src/cli/cli.ts",
"configure": "configure ./src/serverConfig.ts",
"fix": "eslint . --fix",
"lint": "eslint .",
"precommit": "lint-staged && npm-run-all types test prepare",
"prepare": "husky install && patch-package && npm-run-all clean configure build",
"start": "node -r sucrase/register src/index.ts",
"test": "jest",
"types": "tsc",
"verify": "npm-run-all lint types test prepare"
},
"lint-staged": {
"*.{js,ts}": "eslint",
"*.html": "prettier --write"
},
"dependencies": {
"cleaner-config": "^0.1.10",
"cleaners": "^0.3.16",
"clipanion": "^3.2.0-rc.3",
"edge-server-tools": "^0.2.19",
"express": "^5.2.1",
"node-fetch": "^2.6.0",
"pino": "^10.2.0",
"prom-client": "^15.1.0",
"serverlet": "^0.1.1",
"viem": "^2.27.0",
"ws": "^8.18.0",
"yaob": "^0.3.12",
"yavent": "^0.1.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/express": "^5.0.6",
"@types/node": "^20.8.5",
"@types/node-fetch": "^2.5.3",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^10.5.3",
"msw": "^2.8.2",
"msw-snapshot": "^5.3.0",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"prettier": "^2.2.0",
"rimraf": "^3.0.0",
"sucrase": "^3.16.0",
"ts-jest": "^29.2.6",
"typescript": "^5.8.3",
"wait-for-expect": "^3.0.2"
}
}