This repository has been archived by the owner on Dec 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.95 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
{
"name": "blitzjs-swagger-recipe",
"version": "2.1.0",
"description": "A BlitzJs swagger recipe.",
"keywords": [
"blitzjs",
"swagger",
"react"
],
"homepage": "https://github.com/anolilab/blitzjs-swagger-recipe",
"bugs": {
"url": "https://github.com/anolilab/blitzjs-swagger-recipe/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/anolilab/blitzjs-swagger-recipe.git"
},
"license": "MIT",
"author": "Daniel Bannert <[email protected]> (https://github.com/prisis)",
"main": "index.ts",
"scripts": {
"preinstall": "node verify-node-version.cjs",
"postinstall": "husky install",
"lint:staged": "lint-staged",
"lint:text": "textlint ./.build/ISSUE_TEMPLATE/** ./src/** ./docs/** ./README.md ./UPGRADE.md --dry-run",
"prettier": "prettier --config=.prettierrc.cjs --write '**/*.{js,jsx,tsx,ts,less,md,json}'"
},
"lint-staged": {
"*.{js,jsx,tsx,ts,less,md,json,css,scss,sass}": "prettier --config=.prettierrc.cjs --write",
"*.{js,jsx,ts,tsx}": "eslint -c ./.eslintrc.cjs --fix"
},
"dependencies": {
"@blitzjs/installer": "^0.45.0"
},
"devDependencies": {
"@anolilab/eslint-config": "^4.0.0",
"@anolilab/prettier-config": "^3.0.0",
"@anolilab/textlint-config": "^4.0.0",
"@types/lodash.merge": "^4.6.6",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-react": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"typescript": "^4.3.5"
},
"packageManager": "[email protected]"
}