-
-
Notifications
You must be signed in to change notification settings - Fork 300
/
package.json
100 lines (100 loc) · 2.68 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
92
93
94
95
96
97
98
99
100
{
"name": "open-chakra",
"version": "0.1.0",
"private": true,
"dependencies": {
"@bugsnag/js": "^6.5.2",
"@bugsnag/plugin-react": "^6.5.0",
"@chakra-ui/icons": "^2.0.9",
"@chakra-ui/react": "^2.3.2",
"@chakra-ui/theme": "^2.1.11",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mdx-js/react": "^1.5.5",
"@reach/combobox": "^0.7.3",
"@rehooks/local-storage": "^2.1.1",
"@rematch/core": "^1.3.0",
"browser-nativefs": "^0.7.1",
"codesandbox": "^2.1.11",
"coloreact": "^0.3.1",
"copy-to-clipboard": "^3.2.1",
"framer-motion": "7.3.0",
"immer": "^9.0.15",
"lodash": "^4.17.15",
"lodash-es": "^4.17.15",
"lz-string": "^1.4.4",
"next": "^12.0.1",
"next-redux-wrapper": "^6.0.2",
"prism-react-renderer": "^1.0.2",
"react": "^18.2.0",
"react-color": "^2.18.0",
"react-color-picker": "^4.0.2",
"react-dnd": "^13.0.0",
"react-dnd-html5-backend": "15.1.1",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^2.4.0",
"react-icons": "^4.4.0",
"react-redux": "^7.1.3",
"react-split-pane": "^0.1.89",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-undo": "^1.0.0",
"webpack-bundle-analyzer": "^3.6.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"analyze": "BUNDLE_VISUALIZE=1 react-app-rewired build",
"lint": "next lint"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@next/bundle-analyzer": "^9.5.1",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/user-event": "14.2.0",
"@types/jest": "^25.1.2",
"@types/lodash": "^4.14.149",
"@types/lz-string": "^1.3.33",
"@types/prettier": "^1.19.0",
"@types/react": "^18.0.18",
"@types/react-color": "^3.0.1",
"@types/react-dom": "^18.0.0",
"@types/react-redux": "^7.1.7",
"eslint": "^8.23.0",
"eslint-config-next": "12.2.5",
"husky": "^4.2.1",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"lint-staged": "^10.0.7",
"next-compose-plugins": "^2.2.0",
"next-transpile-modules": "^9.0.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"typedoc": "^0.16.9",
"typescript": "4.6.4"
},
"resolutions": {
"@types/react": "^17.0.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,md}": [
"eslint src/**/*.{ts,tsx} --fix",
"git add"
]
}
}