-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
54
55
56
57
{
"name": "swagger-validation-express",
"version": "1.0.4",
"description": "validator middleware for express application , validation is generated from swagger file",
"main": "./lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"dev": "nodemon -e ts,js -w src -w ./server.ts --exec 'tsc && tsc server.ts && node server.js'",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uranium93/swagger-validation-express.git"
},
"keywords": [
"swagger",
"validator",
"validation",
"joi",
"express",
"api"
],
"author": "abderrahmen",
"license": "MIT",
"bugs": {
"url": "https://github.com/uranium93/swagger-validation-express/issues"
},
"homepage": "https://github.com/uranium93/swagger-validation-express#readme",
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"express": "^4.17.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.7",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"typescript": "^3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}