-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.49 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/blockfrost-websocket-link",
"version": "2.2.1",
"files": [
"dist"
],
"scripts": {
"prebuild": "yarn clean",
"build": "yarn clean && tsc",
"clean": "rimraf dist",
"dev": "NODE_ENV=development yarn build && yarn node ./dist/src/server.js",
"lint": "eslint ./src/**/*.ts",
"start": "yarn build && yarn node ./dist/src/server.js",
"start:profiler": "yarn build && NODE_ENV=production yarn node --prof ./dist/src/server.js",
"test-performance": "yarn build && yarn node ./dist/src/scripts/performance/index.js",
"test": "BLOCKFROST_PROJECT_ID=${BLOCKFROST_PROJECT_ID:-mainnet_none} vitest --config vitest.config.unit.ts",
"test:e2e": "vitest --config vitest.config.e2e.ts",
"coverage": "vitest run --coverage",
"type-check": "tsc --project tsconfig.json"
},
"dependencies": {
"@blockfrost/blockfrost-js": "6.0.0-beta.2",
"@emurgo/cardano-serialization-lib-nodejs": "^13.2.1",
"@sentry/integrations": "^7.85.0",
"@sentry/node": "^7.85.0",
"@sentry/tracing": "^7.85.0",
"ajv": " ^8.17.1",
"bignumber.js": "9.1.1",
"bip39": "^3.1.0",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"got": "^13.0.0",
"memoizee": "^0.4.15",
"p-queue": "^7.3.4",
"serialize-error": "^11.0.0",
"uuid": "^9.0.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@esbuild/darwin-arm64": "npm:0.19.8",
"@esbuild/linux-x64": "npm:0.19.8",
"@eslint/compat": "^1.2.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@rollup/rollup-darwin-arm64": "npm:4.6.1",
"@rollup/rollup-linux-x64-gnu": "npm:4.6.1",
"@types/express": "^4.17.17",
"@types/memoizee": "^0.4.8",
"@types/node": "^20",
"@types/sinon": "^10.0.15",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"c8": "^7.13.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-unicorn": "^56.0.0",
"jest-extended": "^4.0.2",
"nock": "^13.3.2",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"sinon": "^15.2.0",
"typescript": "5.3.3",
"vite": "5.0.5",
"vitest": "2.0.5",
"wait-on": "^8.0.1"
},
"engines": {
"node": ">=18"
},
"type": "module",
"main": "dist/server.js",
"packageManager": "[email protected]"
}