-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.54 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
{
"name": "webpack-chopshop",
"version": "0.2.0",
"private": true,
"homepage": "https://panrafal.github.io/webpack-chopshop",
"license": "MIT",
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"start": "FAST_REFRESH=true craco start",
"start:production": "PUBLIC_URL=/ yarn build && npx serve -s build",
"build": "craco build",
"test": "craco test --env=jsdom",
"test:types": "tsc --noEmit",
"predeploy": "yarn run build && rm -rf build/stats",
"deploy": "gh-pages -d build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"@craco/craco": "^6.4.3",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.4",
"@mui/lab": "^5.0.0-alpha.60",
"@mui/material": "^5.2.4",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.178",
"@types/md5": "^2.3.1",
"@types/node": "^16.11.12",
"@types/numeral": "^2.0.2",
"@types/pako": "^1.0.3",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/react-window": "^1.8.5",
"@types/terser": "^3.12.0",
"classnames": "^2.3.1",
"comlink": "^4.3.1",
"fuse.js": "^6.4.6",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"idb-keyval": "^6.0.3",
"lint-staged": "^12.1.2",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"numeral": "^2.0.6",
"pako": "^1.0.11",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.4.2",
"react-error-boundary": "^3.1.4",
"react-hot-loader": "^4.13.0",
"react-promise": "^2.1.0",
"react-scripts": "^5.0.0",
"react-syntax-highlighter": "^15.4.5",
"react-virtual": "^2.10.0",
"react-virtualized": "^9.22.3",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.6",
"reselect": "^3.0.1",
"source-map-explorer": "^1.8.0",
"terser": "^5.10.0",
"throat": "^6.0.1",
"tss-react": "^3.2.2",
"type-fest": "^2.8.0",
"typescript": "^4.5.3"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"prettier": {
"semi": false
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
]
}
}