-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.35 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
{
"name": "@qest/express-utils",
"version": "1.0.3",
"description": "Base features and settings for express framework to projects",
"scripts": {
"prettier:run": "prettier --write \"src/**/*.ts\"",
"prettier:check": "prettier -l \"src/**/*.ts\"",
"tslint:run": "tslint --fix -c tslint.json -p .",
"tslint": "tslint -c tslint.json -p .",
"tsc:check": "tsc --noEmit",
"code:fix": "yarn prettier:run && yarn tslint:run",
"code:check": "yarn prettier:check && yarn tslint && yarn tsc:check",
"build": "rimraf dist && tsc"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [],
"author": "QEST",
"repository": {
"type": "git",
"url": "https://github.com/qest-cz/express-utils"
},
"license": "MIT",
"dependencies": {
"@qest/error-utils": "^1.0.1",
"@sentry/node": "^6.2.5",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-rate-limit": "5.2.6",
"http-codes": "^1.0.0",
"lodash": "^4.17.21",
"on-finished": "^2.3.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/express-rate-limit": "5.1.1",
"@types/http-codes": "^1.0.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.4"
}
}