forked from premieroctet/openchakra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.41 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
84
85
86
87
88
89
90
91
{
"name": "open-chakra",
"version": "0.1.0",
"private": true,
"dependencies": {
"@bugsnag/js": "^6.5.2",
"@bugsnag/plugin-react": "^6.5.0",
"@chakra-ui/core": "^0.5.2",
"@emotion/core": "^10.0.27",
"@emotion/styled": "^10.0.27",
"@mdx-js/react": "^1.5.5",
"@reach/combobox": "^0.7.3",
"@rehooks/local-storage": "^2.1.1",
"@rematch/core": "^1.3.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^25.1.2",
"codesandbox": "^2.1.11",
"coloreact": "^0.3.1",
"copy-to-clipboard": "^3.2.1",
"emotion-theming": "^10.0.27",
"lodash": "^4.17.15",
"lodash-es": "^4.17.15",
"lz-string": "^1.4.4",
"prism-react-renderer": "^1.0.2",
"react": "^16.12.0",
"react-color": "^2.18.0",
"react-color-picker": "^4.0.2",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "^16.12.0",
"react-hotkeys": "^2.0.0",
"react-icons": "^3.9.0",
"react-redux": "^7.1.3",
"react-scripts": "3.3.0",
"react-split-pane": "^0.1.89",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-undo": "^1.0.0",
"typescript": "^3.7.5",
"webpack-bundle-analyzer": "^3.6.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"analyze": "BUNDLE_VISUALIZE=1 react-app-rewired build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/lz-string": "^1.3.33",
"@types/prettier": "^1.19.0",
"@types/react-color": "^3.0.1",
"@types/react-redux": "^7.1.7",
"customize-cra": "^0.9.1",
"customize-cra-react-refresh": "^1.0.1",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react-app-rewired": "^2.1.5",
"typedoc": "^0.16.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,md}": [
"eslint src/**/*.{ts,tsx} --fix",
"git add"
]
}
}