-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
83 lines (83 loc) · 2.13 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "catch-react-error",
"version": "3.0.0",
"description": "A framework combines React Error Boundaries and decorator to protect react source code easily",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "npx babel src --out-dir dist --extensions '.ts,.tsx'"
},
"repository": {
"type": "git",
"url": "[email protected]:x-orpheus/catch-react-error.git"
},
"keywords": [
"react",
"error boundaries",
"decorator"
],
"author": "zwd",
"contributors": [
"zwd <[email protected]>",
"zxt <[email protected]>"
],
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,css,less,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^24.0.23",
"@typescript-eslint/parser": "^2.6.0",
"babel-jest": "^24.9.0",
"commitlint": "^8.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.6.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-typescript": "^7.6.0",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"codecov": "^3.6.1",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"typescript": "^3.6.4"
},
"engines": {
"node": ">=8.0.0"
}
}