forked from blockfrost/blockfrost-backend-ryo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 3.04 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
82
83
{
"name": "blockfrost-backend-ryo",
"version": "1.7.0",
"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_OPTIONS='--max-http-header-size 32768' NODE_ENV=test vitest",
"test-badges": "make-coverage-badge --output-path ./docs/images/badge.svg",
"test-integration:mainnet": "cross-env NETWORK=mainnet vitest -c vitest.config.integration.ts --run --segfault-retry=3",
"test-integration:preprod": "cross-env NETWORK=preprod vitest -c vitest.config.integration.ts --run --segfault-retry=3",
"test-integration:preview": "cross-env NETWORK=preview vitest -c vitest.config.integration.ts --run --segfault-retry=3",
"type-check": "tsc --project tsconfig.json"
},
"dependencies": {
"@blockfrost/blockfrost-js": "5.4.0",
"@blockfrost/blockfrost-utils": "2.8.0",
"@blockfrost/openapi": "0.1.60",
"@emurgo/cardano-serialization-lib-nodejs": "11.5.0",
"@emurgo/cip14-js": "^3.0.1",
"@fastify/cors": "^8.3.0",
"@fastify/postgres": "^5.2.0",
"@sentry/node": "^7.69.0",
"JSONStream": "^1.3.5",
"ajv": "^8.12.0",
"axios": "^1.5.0",
"config": "3.3.9",
"crc": "^4.3.2",
"cross-env": "^7.0.3",
"fastify": "4.23.2",
"fastify-plugin": "^4.5.1",
"pg": "^8.11.3",
"pg-format": "^1.0.4",
"pino-pretty": "10.2.0",
"rimraf": "^5.0.1"
},
"devDependencies": {
"@blockfrost/blockfrost-tests": "1.10.0",
"@esbuild/darwin-x64": "npm:0.16.17",
"@esbuild/linux-x64": "npm:0.16.17",
"@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": "^6.7.2",
"@typescript-eslint/parser": "6.7.2",
"@vitest/coverage-c8": "^0.27",
"change-case": "^4.1.2",
"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.2.2",
"vitest": "^0.27"
},
"packageManager": "yarn@3.6.3",
"type": "module",
"engines": {
"node": ">=16"
}
}