-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.49 KB
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
{
"name": "tari-explorer",
"version": "0.0.2",
"private": true,
"type": "module",
"main": "src/index.ts",
"scripts": {
"start": "npm run build && node ./build/index.js",
"dev": "nodemon --watch \"./**/*.ts\" --ignore \"./build/**\" --ignore \"./grpc-gen/**\" --ext ts --exec \"cross-env npm run build && node ./build/index.js\"",
"build": "npm run grpc:generate && rimraf -rf ./build && tsc --build tsconfig.json",
"grpc:generate": "npx tsx bin/execGrpcGeneration.ts",
"grpc:generate:win": "shx mkdir -p grpc-gen && npx grpc_tools_node_protoc --plugin=protoc-gen-ts_proto=\".\\node_modules\\.bin\\protoc-gen-ts_proto.cmd\" --ts_proto_out=grpc-gen --ts_proto_opt=env=node,outputServices=nice-grpc,outputServices=generic-definitions,useExactTypes=true,useAsyncIterable=false,importSuffix=.js,snakeToCamel=false,forceLong=bigint,stringEnums=true --proto_path=applications\\minotari_app_grpc\\proto\\ base_node.proto",
"grpc:generate:unix": "shx mkdir -p grpc-gen && npx grpc_tools_node_protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=./grpc-gen --ts_proto_opt=env=node,outputServices=nice-grpc,outputServices=generic-definitions,useExactTypes=true,useAsyncIterable=false,importSuffix=.js,snakeToCamel=false,forceLong=bigint,stringEnums=true --proto_path=./applications/minotari_app_grpc/proto/ base_node.proto",
"grpc:download": "npx tsx bin/refreshGrpcFiles.ts",
"fmt": "prettier --end-of-line auto -w **/*.{ts,hbs}",
"check-fmt": "prettier --end-of-line auto -c .",
"lint": "eslint . ",
"lint-fix": "eslint --fix ."
},
"dependencies": {
"@grpc/grpc-js": "^1.13.4",
"adm-zip": "^0.5.16",
"asciichart": "^1.5.25",
"commander": "^14.0.1",
"cors": "^2.8.5",
"express": "~5.1.0",
"fast-csv": "^5.0.5",
"grpc-promise": "^1.4.0",
"hbs": "^4.1.2",
"json-bigint": "^1.0.0",
"long": "^5.3.2",
"nice-grpc": "^2.1.12",
"pino-http": "^10.5.0",
"protobufjs": "^7.5.4",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/node": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.43.0",
"cross-env": "^10.0.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"grpc-tools": "^1.13.0",
"nodemon": "^3.1.7",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"shx": "^0.4.0",
"ts-proto": "^2.7.7",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
}
}