-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 938 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 938 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
35
36
37
38
39
{
"name": "@enterprisepro/common",
"version": "1.0.55",
"description": "",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"clean": "rimraf ./build/",
"build": "npm run clean && tsc",
"publish": "git add . && git commit -m \"updates\" && npm version patch && npm run build && npm publish"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"del-cli": "^5.0.0",
"rimraf": "^5.0.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongoose": "^5.11.97",
"env": "^0.0.2",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.5.0",
"mongoose": "^7.1.1",
"nats": "^2.15.1",
"node-nats-streaming": "^0.3.2"
}
}