-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.24 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.24 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
{
"name": "dpid-resolver",
"version": "2.1.0",
"description": "An open-source HTTP resolver for dPIDs, bridging decentralized protocols to HTTP for scientific research artifact data",
"author": "Edvard Hübinette",
"repository": {
"type": "git",
"url": "https://github.com/desci-labs/dpid-resolver"
},
"license": "MIT",
"engines": {
"node": "^18.17 || >=20"
},
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node dist/src/index.js",
"test": "PINO_LOG_LEVEL=silent PORT=5600 vitest --config vitest.config.ts",
"dev": "tsx --watch --inspect --inspect-port=9309 src/index.ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts --fix",
"tidy": "npm run prettier-format && npm run lint"
},
"devDependencies": {
"@sentry/cli": "^2.57.0",
"@types/express": "^4.17.21",
"@types/node": "^20.13.1",
"@types/supertest": "^2.0.16",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"prettier": "^3.3.2",
"supertest": "^6.3.3",
"tsx": "^4.15.6",
"typescript": "^5.4.5",
"vitest": "^3.1.3"
},
"dependencies": {
"@desci-labs/desci-codex-lib": "^2.0.0-rc9",
"@desci-labs/desci-contracts": "^0.2.7",
"@desci-labs/desci-models": "0.2.29-fair",
"@sentry/node": "^10.22.0",
"@sentry/profiling-node": "^10.22.0",
"@supabase/supabase-js": "^2.43.5",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"ethers": "^5.7.2",
"express": "^4.19.2",
"multiformats": "^13.4.1",
"pino": "^9.2.0",
"pino-http": "^10.1.0",
"pino-pretty": "^11.2.1",
"pino-std-serializers": "^7.0.0",
"redis": "^4.7.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"url-safe-base64": "^1.2.0"
}
}