-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
{
"name": "versions-diff-web",
"version": "0.1.0",
"homepage": "https://diff.blitzjs.com/",
"license": "MIT",
"dependencies": {
"@ant-design/icons": "4.0.3",
"@emotion/core": "10.0.28",
"@emotion/styled": "10.0.27",
"antd": "4.0.3",
"framer-motion": "^2.0.0-beta.52",
"gitdiff-parser": "^0.2.2",
"markdown-to-jsx": "^7.1.1",
"query-string": "6.11.1",
"react": "16.13.0",
"react-content-loader": "5.0.2",
"react-copy-to-clipboard": "5.0.2",
"react-diff-view": "2.4.7",
"react-dom": "16.13.0",
"react-dom-confetti": "0.1.3",
"react-ga": "2.7.0",
"react-github-btn": "1.1.1",
"react-scripts": "3.4.0",
"semver": "7.1.3"
},
"devDependencies": {
"@babel/helper-define-map": "^7.12.13",
"@babel/helper-regex": "^7.10.5",
"@babel/helper-call-delegate": "^7.12.13",
"@emotion/babel-preset-css-prop": "10.0.27",
"@testing-library/react": "^10.0.3",
"customize-cra": "^0.9.1",
"customize-cra-react-refresh": "^1.0.1",
"eslint": "6.8.0",
"eslint-plugin-prettier": "3.1.2",
"gh-pages": "2.2.0",
"husky": "4.2.3",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"react-app-rewired": "^2.1.5"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"lint": "eslint . --cache --report-unused-disable-directives",
"eject": "react-app-rewired eject"
},
"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"
]
}
}