-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 KB
/
package.json
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
{
"name": "@novice1/frame",
"version": "0.1.12",
"description": "Web framework for building APIs.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kisiwu/novice-frame.git"
},
"scripts": {
"build": "npm run lint && tsc",
"doc": "typedoc",
"lint": "eslint src/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"api",
"framework",
"openapi",
"novice1",
"postman",
"express"
],
"author": "demingongo",
"license": "MIT",
"dependencies": {
"@novice1/api-doc-generator": "^0.2.6",
"@novice1/app": "^0.3.5",
"@novice1/routing": "^1.1.7",
"@novice1/validator-joi": "^0.1.6",
"@types/express": "^5.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^4.21.1",
"extend": "^3.0.2",
"joi": "^17.13.3",
"swagger-ui-express": "^5.0.1",
"tslib": "^2.7.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/extend": "^3.0.4",
"@types/node": "^22.5.5",
"@types/swagger-ui-express": "^4.1.6",
"@types/yamljs": "^0.2.34",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^8.57.0",
"ts-node": "^10.9.2",
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
}
}