-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.63 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.63 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
{
"name": "node_template",
"version": "1.0.0",
"main": "src/server.js",
"scripts": {
"dev": "nodemon --watch src --exec ts-node --files src/server.ts",
"dev:grpc": "nodemon --watch src --exec ts-node --files src/grpc/server.grpc.ts",
"build": "tsc",
"start": "node dist/server.js",
"start:grpc": "node dist/grpc/server.grpc.js",
"lint": "eslint . --ext .ts",
"generate:proto": "protoc --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=src/grpc/generated --proto_path=src/grpc/proto src/grpc/proto/*.proto"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@grpc/grpc-js": "^1.14.1",
"@grpc/proto-loader": "^0.8.0",
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"nodemon": "^3.1.11",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"ts-proto": "^2.8.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4"
},
"dependencies": {
"@grpc/reflection": "^1.0.4",
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"mysql2": "^3.15.3",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.27"
}
}