-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "project",
"version": "0.0.1",
"type": "module",
"description": "Nodejs Microservice template",
"main": "dist/app.js",
"author": "Suraj Tiwari <surajtiwari020@gmail.com>",
"private": true,
"scripts": {
"build": "tsc",
"dev": "nodemon --exec node --no-warnings=ExperimentalWarning --loader ts-node/esm src/app.ts",
"start": "node dist/app.ts"
},
"dependencies": {
"@bufbuild/buf": "^1.42.0",
"@bufbuild/protobuf": "^1.4.2",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-node": "^1.4.0",
"dotenv": "^10.0.0",
"mongoose": "^8.3.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "18.19.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"nodemon": "^3.1.4",
"prettier": "^2.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"keywords": [
"microservice",
"docker",
"nodejs",
"mongodb",
"mongoose"
],
"peerDependencies": {
"typescript": "^5.0.0"
}
}