-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "api-tools-ts",
"version": "1.3.7",
"description": "A light-weight library to help you create APIs on the fly using express.js written in TypeScript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"build:lib": "npx tsup",
"build:docs": "npx typedoc src/index.ts"
},
"author": "naseif",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/naseif/API-Tools-TS.git"
},
"bugs": {
"url": "https://github.com/naseif/API-Tools-TS/issues"
},
"homepage": "https://github.com/naseif/API-Tools-TS#readme",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.14",
"prettier": "^2.5.1",
"tslint": "^6.1.3",
"tsup": "^5.12.6",
"typescript": "^4.5.4"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.6.0",
"morgan": "^1.10.0"
}
}