-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.82 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
58
59
60
61
62
63
64
{
"name": "react-router-route-generator",
"version": "0.1.3",
"description": "React Router route generator",
"homepage": "https://github.com/kahirokunn/react-router-route-generator",
"bugs": "https://github.com/kahirokunn/react-router-route-generator/issues",
"repository": {
"type": "git",
"url": "https://github.com/kahirokunn/react-router-route-generator.git"
},
"license": "MIT",
"author": "kahirokunn",
"main": "lib/src/index.js",
"typings": "lib/src/index.d.ts",
"bin": {
"generate-routes": "src/bin/generate-routes.js"
},
"scripts": {
"build": "tsc && chmod +x ./lib/src/bin/generate-routes.js",
"clean": "rm -rf lib gen",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' --cache --max-warnings=0",
"lint:fix": "npm run prettier && npm run lint -- --fix",
"prettier": "prettier '**/*.{js,jsx,ts,tsx,json}' --write",
"prepare": "husky install",
"publish": ""
},
"lint-staged": {
"*.json": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{yml,yaml}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"dependencies": {
"commander": "^7.2.0",
"compare-func": "^2.0.0",
"glob": "^7.1.6"
},
"devDependencies": {
"@types/compare-func": "^1.3.0",
"@types/glob": "^7.1.3",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "^29.0.0",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"sort-package-json": "^1.49.0",
"typescript": "^4.2.3"
}
}