-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.35 KB
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": "upgrade-helper",
"version": "0.1.0",
"homepage": "https://react-native-community.github.io/upgrade-helper",
"license": "MIT",
"dependencies": {
"@testing-library/react": "9.4.0",
"antd": "3.26.7",
"markdown-to-jsx": "6.10.3",
"query-string": "6.10.1",
"ramda": "^0.26.1",
"react": "16.12.0",
"react-content-loader": "4.3.4",
"react-diff-view": "2.4.1",
"react-dom": "16.12.0",
"react-dom-confetti": "0.1.3",
"react-ga": "2.7.0",
"react-github-btn": "1.1.1",
"react-scripts": "3.0.1",
"semver": "7.1.1",
"styled-components": "5.0.0"
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-plugin-prettier": "3.1.2",
"gh-pages": "2.2.0",
"husky": "4.2.0",
"prettier": "1.19.1",
"pretty-quick": "2.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint . --cache --report-unused-disable-directives"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"src/**/*.*(js|jsx)\"",
"pre-push": "yarn run lint"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}