-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "chrona",
"version": "1.0.4",
"description": "Simple HTTP request logger middleware for express.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"express",
"http",
"logger",
"middleware"
],
"scripts": {
"dev:run": "ts-node ./index.ts",
"dev:server": "ts-node ./example.ts",
"build": "tsc",
"prepare": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/xambassador/chrona.git"
},
"author": "Yash Ramoliya <[email protected]>",
"license": "MIT",
"dependencies": {
"bytes": "^3.1.2",
"chalk": "4.1.2",
"pino": "^8.17.1"
},
"devDependencies": {
"@hapi/boom": "^10.0.1",
"@types/bytes": "^3.1.1",
"@types/express": "^4.17.17",
"@types/node": "^20.4.10",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"express": "^4.18.2",
"prettier": "^3.0.1",
"prettier-plugin-jsdoc": "^1.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"winston": "^3.10.0"
},
"files": [
"dist/**/*"
]
}