This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.84 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
{
"name": "@denotarius/denotarius-api",
"version": "1.0.1",
"type": "module",
"author": "denotarius.io",
"scripts": {
"prebuild": "yarn clean",
"build": "yarn clean && tsc",
"clean": "rm -rf dist",
"start": "yarn build && NODE_ENV=production yarn node ./dist/server.js",
"dev:testnet": "yarn build && NODE_ENV=dev-testnet yarn node ./dist/server.js",
"dev:mainnet": "yarn build && NODE_ENV=dev-mainnet yarn node ./dist/server.js",
"dev:preview": "yarn build && NODE_ENV=dev-preview yarn node ./dist/server.js",
"dev:preprod": "yarn build && NODE_ENV=dev-preprod yarn node ./dist/server.js",
"lint": "eslint ./src/**/*.ts",
"type-check": "tsc --project tsconfig.json",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@blockfrost/blockfrost-js": "5.0.0",
"@blockfrost/blockfrost-utils": "1.0.0-alfa.7",
"@emurgo/cardano-serialization-lib-nodejs": "11.0.5",
"@fastify/autoload": "^5.4.0",
"@types/node": "^18.8.0",
"bip39": "^3.0.4",
"config": "^3.3.8",
"dotenv": "^16.0.2",
"esbuild-linux-64": "^0.15.10",
"fastify": "^4.8.1",
"moment": "^2.29.4",
"pg-promise": "^10.12.0",
"pino-pretty": "^9.1.0"
},
"devDependencies": {
"@types/config": "0.0.41",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "5.30.4",
"@vitest/coverage-c8": "^0.23.4",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-unicorn": "^43.0.0",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typescript": "4.7.4",
"uuid": "^9.0.0",
"vitest": "^0.23.4"
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]"
}