-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.54 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.54 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
{
"name": "request-response-handler",
"version": "1.1.0",
"description": "Handle HTTP request responses",
"main": "dist/src/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"build": "npm run clean && npm run build-src",
"build-src": "tspc && babel src --out-dir dist/",
"serve": "TS_NODE_BASEURL=./dist node -r tsconfig-paths/register dist/src/index.js",
"start": "NODE_ENV=production npm run build && npm run serve",
"src": "tsc && nodemon",
"dev": "NODE_ENV=development npm-run-all src",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"test": "jest",
"prepublishOnly": "NODE_ENV=production npm run build && npm run serve",
"format": "npx prettier --write .",
"watch": "nodemon",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check --watch"
},
"keywords": [],
"author": "PascalUlor",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/node": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.22.15",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/jest": "^29.5.4",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"auto": "^11.0.4",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"husky": "^4.2.5",
"jest": "^29.6.4",
"mock-express": "^1.3.1",
"nodemon": "^2.0.13",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"ts-patch": "^3.0.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2",
"typescript-transform-paths": "^3.4.6"
},
"dependencies": {
"dotenv": "^10.0.0",
"http-status-codes": "^2.1.4"
},
"nodemonConfig": {
"ignore": [
"node_modules"
],
"exec": "babel-node dist/src/index.js",
"watch": [
"src/*"
],
"ext": "js, json, ts"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PascalUlor/request-response-handler.git"
},
"bugs": {
"url": "https://github.com/PascalUlor/request-response-handler/issues"
},
"homepage": "https://github.com/PascalUlor/request-response-handler#readme",
"auto": {
"plugins": [
"npm"
]
}
}