-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 942 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 942 Bytes
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
{
"name": "grpc-wrapper",
"version": "1.0.0",
"type": "commonjs",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.build.json && cp -r src/proto dist",
"client": "node dist/client/gRPCWrapper.js",
"central": "node dist/central/CentralSystem.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"author": "ALICEO2",
"devDependencies": {
"@stylistic/eslint-plugin-js": "^4.4.1",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@types/jest": "^29.5.14",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^61.1.12",
"jest": "^29.7.0",
"ts-jest": "^29.4.0",
"tsc-alias": "^1.8.16",
"typescript-eslint": "^8.46.3"
},
"dependencies": {
"@grpc/grpc-js": "^1.13.4",
"@grpc/proto-loader": "^0.7.15",
"express": "^5.1.0",
"jose": "^6.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}