-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.53 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.53 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
{
"name": "transaction-describer",
"version": "0.0.0",
"description": "Transaction Describer",
"main": "src/index.ts",
"scripts": {
"start": "pnpm pm2",
"dev": "pnpm crfa && nodemon src/index.ts -w . -w .env -e ts,js,mjs,json,env",
"test": "pnpm crfa && vitest run --coverage",
"crfa": "test -d ./crfa-offchain-data-registry/.git || git clone https://github.com/Cardano-Fans/crfa-offchain-data-registry.git && git -C ./crfa-offchain-data-registry/ pull",
"build": "pnpm crfa && tsc --outDir build",
"pm2": "pnpm build && pm2-runtime start build/src/index.js --env production 2>/dev/null",
"node": "pnpm crfa && ts-node src/index.ts",
"lint-docs": "redocly lint ./openapi.yaml --format stylish",
"build-docs": "pnpm lint-docs && redocly build-docs ./openapi.yaml -o ./docs/index.html"
},
"author": "Ariady Putra",
"license": "MIT",
"dependencies": {
"@lucid-evolution/lucid": "0.4.27",
"bech32": "2.0.0",
"dotenv": "16.5.0",
"express": "4.21.2",
"express-openapi": "12.1.3",
"express-rate-limit": "7.5.0",
"js-yaml": "4.1.0",
"node-cache": "5.1.2",
"pm2": "6.0.5",
"winston": "3.17.0"
},
"devDependencies": {
"@redocly/cli": "1.34.4",
"@types/express": "5.0.1",
"@types/js-yaml": "4.0.9",
"@types/node": "22.14.1",
"@vitest/coverage-istanbul": "3.1.4",
"@vitest/coverage-v8": "3.1.4",
"nodemon": "3.1.10",
"ts-node": "10.9.2",
"typescript": "5.8.3",
"vitest": "3.1.4"
},
"engines": {
"node": "22.x",
"pnpm": "10.x"
}
}