forked from blockfrost/blockfrost-backend-ryo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 3.26 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
{
"name": "blockfrost-backend",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "Apache-2.0",
"author": "blockfrost.io",
"scripts": {
"build": "yarn clean && tsc && cp -R src/sql/* dist/sql",
"clean": "rimraf dist",
"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",
"generate-types": "openapi-typescript ./node_modules/@blockfrost/openapi/openapi.yaml --output ./src/types/openapi.ts",
"lint": "eslint ./src/**/*.ts",
"run-dev": "ts-node-dev --transpile-only 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 jest -c jest.config.js",
"test-badges": "make-coverage-badge --output-path ./docs/images/badge.svg",
"test-integration-ci-mainnet": "cross-env BASE_URL=http://localhost:3000 jest -c test/integration/jest.config.js --verbose --runInBand",
"test-integration-ci-testnet": "cross-env IS_TESTNET=true BASE_URL=http://localhost:3000 jest -c test/integration/jest.config.js --verbose --runInBand",
"test-integration-local-mainnet": "cross-env BASE_URL=http://localhost:3000 jest -c test/integration/jest.config.js",
"test-integration-local-testnet": "cross-env IS_TESTNET=true BASE_URL=http://localhost:3000 jest -c test/integration/jest.config.js --verbose",
"type-check": "tsc --project tsconfig.json"
},
"dependencies": {
"@blockfrost/blockfrost-js": "5.0.0",
"@blockfrost/blockfrost-utils": "1.0.0",
"@blockfrost/openapi": "https://github.com/blockfrost/openapi.git#117480b6fb72a782fbf543d3d64cfa992a43178f",
"@emurgo/cardano-serialization-lib-nodejs": "11.0.0",
"@emurgo/cip14-js": "^3.0.1",
"@fastify/autoload": "^5.3.1",
"@fastify/cors": "^8.1.0",
"@fastify/postgres": "^5.1.0",
"@sentry/node": "^7.12.1",
"axios": "^0.27.2",
"config": "3.3.7",
"cross-env": "^7.0.3",
"fastify": "4.5.3",
"fastify-plugin": "^4.2.1",
"pg": "^8.8.0",
"pg-format": "^1.0.4",
"pino-pretty": "9.1.0",
"rimraf": "^3.0.2",
"yaml": "^2.1.1"
},
"devDependencies": {
"@types/config": "3.3.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.15",
"@types/pg": "^8.6.5",
"@types/pg-format": "^1.0.2",
"@types/sinon": "^10.0.13",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "5.36.1",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "^43.0.2",
"jest": "^29.0.2",
"jest-extended": "^3.1.0",
"jest-openapi": "^0.14.2",
"make-coverage-badge": "^1.2.0",
"openapi-typescript": "^5.4.1",
"prettier": "2.7.1",
"sinon": "^14.0.0",
"supertest": "^6.2.4",
"ts-jest": "^28.0.8",
"ts-node-dev": "2.0.0",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16"
}
}