-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.66 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.66 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
{
"name": "@peacprotocol/server",
"version": "0.9.3",
"description": "PEAC Protocol - Enterprise Automated Economy Infrastructure",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest --coverage --detectOpenHandles",
"test:coverage": "jest --coverage",
"lint": "eslint 'src/**/*.ts'",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"e2e:verify": "node scripts/e2e/verify-success.mjs",
"e2e:ssrf": "node scripts/e2e/ssrf-check.mjs",
"verify:release": "bash tools/verify-0.9.3.sh",
"smoke": "bash tools/smoke.sh",
"type-check": "tsc --noEmit -p tsconfig.json",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'"
},
"dependencies": {
"bullmq": "^5.1.0",
"cors": "^2.8.5",
"ethers": "^6.15.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"ioredis": "^5.5.0",
"ipaddr.js": "^2.1.0",
"jose": "^5.2.0",
"pino": "^8.17.0",
"prom-client": "^15.1.0",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"license": "Apache-2.0"
}