-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
81 lines (81 loc) · 2.66 KB
/
package.json
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
79
80
81
{
"name": "blockfrost-backend-ryo",
"version": "2.3.1",
"description": "",
"keywords": [],
"license": "Apache-2.0",
"author": "blockfrost.io",
"scripts": {
"build": "yarn clean && tsc && cp -R src/sql/* dist/sql",
"clean": "rimraf dist",
"coverage": "vitest run --coverage",
"dev": "cross-env NODE_OPTIONS='--max-http-header-size 32768' NODE_ENV=development yarn run-dev",
"dev-testnet": "cross-env NODE_OPTIONS='--max-http-header-size 32768' NODE_ENV=development-testnet yarn run-dev",
"lint": "eslint ./src/**/*.ts",
"run-dev": "nodemon src/server.ts",
"start": "yarn build && node --max-http-header-size=32768 dist/server.js",
"start-mainnet": "cross-env-shell NODE_ENV=mainnet \"yarn start\"",
"start-testnet": "cross-env-shell NODE_ENV=testnet \"yarn start\"",
"test": "cross-env NODE_ENV=test NODE_OPTIONS='--max-http-header-size 32768' vitest",
"test-badges": "make-coverage-badge --output-path ./docs/images/badge.svg",
"type-check": "tsc --project tsconfig.json"
},
"dependencies": {
"@blockfrost/blockfrost-js": "5.5.0",
"@blockfrost/blockfrost-utils": "2.8.1",
"@blockfrost/openapi": "0.1.69",
"@emurgo/cardano-serialization-lib-nodejs": "11.5.0",
"@fastify/cors": "^9.0.1",
"@fastify/http-proxy": "^9.5.0",
"@fastify/postgres": "^5.2.2",
"@sentry/node": "^7.69.0",
"JSONStream": "^1.3.5",
"ajv": "^8.12.0",
"axios": "^1.5.0",
"bech32": "^2.0.0",
"config": "3.3.9",
"crc": "^4.3.2",
"cross-env": "^7.0.3",
"fastify": "4.27.0",
"fastify-plugin": "^4.5.1",
"nock": "^13.5.4",
"path-to-regexp": "^6.2.2",
"pg": "^8.11.3",
"pg-format": "^1.0.4",
"pino-pretty": "10.2.0",
"rimraf": "^5.0.1"
},
"devDependencies": {
"@types/blake2b": "^2.1.3",
"@types/config": "3.3.1",
"@types/express": "^4.17.17",
"@types/node": "^20.6.2",
"@types/pg": "^8.10.2",
"@types/pg-format": "^1.0.2",
"@types/sinon": "^10.0.16",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "7.10.0",
"@vitest/coverage-v8": "^1.2.2",
"blake2b": "^2.1.4",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"express": "^4.18.2",
"make-coverage-badge": "^1.2.0",
"nodemon": "^3.0.1",
"prettier": "3.0.3",
"sinon": "^16.0.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.4.5",
"vitest": "^1.2.2"
},
"packageManager": "[email protected]",
"type": "module",
"engines": {
"node": ">=16"
}
}