-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "express-query-parser",
"description": "A parser helps you parse request for your express server",
"version": "1.3.3",
"main": "dist/index.js",
"author": "jackypan1989 <jackypan1989@gmail.com>",
"keywords": [
"express",
"query",
"parser",
"query-parser"
],
"license": "MIT",
"scripts": {
"lint": "lint-staged",
"precommit": "yarn lint",
"tsc": "tsc ./src/index.ts --noEmit --esModuleInterop",
"tsc-build": "tsc ./src/index.ts --declaration --emitDeclarationOnly --esModuleInterop --outDir dist",
"build": "ts-node esbuild.ts && yarn tsc-build",
"start": "ts-node ./src/index.ts",
"example:build": "cd example && yarn",
"example:start": "cd example && yarn start"
},
"lint-staged": {
"*": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/qs": "^6.9.7",
"@types/ramda": "^0.27.45",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"esbuild": "^0.13.4",
"eslint": "^8.0.0",
"jest": "^27.2.5",
"lint-staged": "^11.2.3",
"ts-node": "^10.3.0",
"typescript": "^4.4.3"
}
}