-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.82 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.82 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@ubio/framework",
"version": "17.0.0",
"type": "module",
"description": "ubio Microservices Framework",
"main": "out/main/index.js",
"exports": {
".": "./out/main/index.js",
"./modules/mongodb": "./out/modules/mongodb.js"
},
"files": [
"out/main/**/*",
"out/modules/**/*",
"out/bin/**/*"
],
"bin": {
"generate-openapi": "out/bin/generate-openapi.js",
"generate-docs": "out/bin/generate-docs.js",
"generate-env": "out/bin/generate-env.js"
},
"scripts": {
"dev": "npm run clean && tsc -w",
"lint": "eslint --cache .",
"test": "NODE_ENV=test mocha",
"clean": "rm -rf out",
"compile": "npm run clean && tsc",
"preversion": "npm run compile && npm run lint && npm run test",
"postversion": "npm publish --access public && git push origin main --tags"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ubio/node-framework.git"
},
"author": "ubio",
"license": "ISC",
"bugs": {
"url": "https://github.com/ubio/node-framework/issues"
},
"homepage": "https://github.com/ubio/node-framework#readme",
"devDependencies": {
"@fastify/pre-commit": "^2.2.1",
"@nodescript/eslint-config": "^2.1.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "^2.11.8",
"@types/koa__cors": "^3.0.2",
"@types/koa-compress": "^4.0.1",
"@types/koa-conditional-get": "^2.0.0",
"@types/koa-etag": "^3.0.0",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.32",
"@types/stoppable": "^1.1.0",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"eslint": "^9.39.1",
"mocha": "^10.0.0",
"mongodb": "^6.10.0",
"npm-run-all": "^4.1.5",
"supertest": "^6.1.3",
"theredoc": "^1.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@koa/cors": "^5.0.0",
"@nodescript/errors": "^1.2.0",
"@nodescript/http-server": "^2.10.1",
"@nodescript/logger": "^2.0.6",
"@nodescript/metrics": "^1.7.1",
"@nodescript/microframework": "^1.15.3",
"@nodescript/pathmatcher": "^1.0.2",
"@ubio/request": "^3.5.0",
"ajv": "^8.1.0",
"ajv-formats": "^2.0.2",
"commander": "^7.2.0",
"dotenv": "^16.3.1",
"ioredis": "^5.8.1",
"jsonwebtoken": "^9.0.0",
"koa": "^2.11.0",
"koa-body": "^4.2.0",
"koa-compress": "^5.1.1",
"koa-conditional-get": "^3.0.0",
"koa-etag": "^4.0.0",
"mesh-config": "^1.2.1",
"mesh-ioc": "^4.1.0",
"reflect-metadata": "^0.1.13",
"stoppable": "^1.1.0",
"uuid": "^8.3.2"
}
}