forked from Upstatement/react-router-guards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.87 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
{
"name": "react-router-guards-main",
"version": "0.1.4",
"private": true,
"description": "Guard middleware for React Router navigation",
"author": "Josh Pensky <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/upstatement/react-router-guards.git"
},
"bugs": {
"url": "https://github.com/upstatement/react-router-guards/issues"
},
"homepage": "https://github.com/upstatement/react-router-guards#readme",
"scripts": {
"build": "lerna link && lerna run build --stream",
"build:pkg": "lerna run build --scope=react-router-guards",
"build:demo": "npm run build:pkg && lerna link && lerna run build --scope=react-router-guards-demo-intermediate",
"bootstrap": "lerna clean -y && lerna link && lerna bootstrap",
"prepublishOnly": "npm run bootstrap",
"start": "npm run build:pkg && lerna link && lerna run start --parallel",
"test": "lerna run test --stream"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"@upstatement/eslint-config": "^0.4.2",
"@upstatement/prettier-config": "^0.3.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^1.3.1",
"lerna": "^3.15.0",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0",
"tslib": "^1.9.3",
"typescript": "^3.4.5"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
],
"*.scss": [
"stylelint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
}
}