-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.43 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
{
"name": "dappnode-cert-api",
"version": "1.0.0",
"description": "dAppNode SSL certificate API",
"repository": {
"type": "git",
"url": "git://github.com/Shard-Labs/dappnode-cert-api.git"
},
"main": "dist/index.js",
"engines": {
"node": ">=20.19.0"
},
"packageManager": "yarn@1.22.22",
"scripts": {
"build": "yarn clean && tsc",
"validate": "yarn format:check && yarn lint && yarn typecheck",
"clean": "rm -rf dist",
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"test": "node --import tsx --test test/index.test.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.0.0",
"@types/supertest": "^7.2.1",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@typescript-eslint/parser": "^8.64.0",
"eslint": "^10.7.0",
"prettier": "^3.9.0",
"supertest": "^7.2.2",
"tsx": "^4.23.1",
"typescript": "^6.0.3"
},
"dependencies": {
"dotenv": "^17.4.2",
"ethers": "^6.17.0",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"morgan": "^1.11.0",
"multer": "^2.2.0"
},
"resolutions": {
"@types/express": "^5.0.6",
"@types/node": "^24.0.0"
}
}