-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 2.98 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
101
102
103
104
105
{
"name": "mui-treasury",
"version": "0.1.0",
"private": true,
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"*src/**/*.{js,jsx}": [
"eslint"
]
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/eslint-parser": "^7.14.2",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-knobs": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addon-notes": "^5.3.21",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0"
},
"dependencies": {
"@date-io/dayjs": "1.3.13",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.11.3-deprecations.1",
"@material-ui/pickers": "^3.3.10",
"@material-ui/styles": "^4.11.4",
"@material-ui/system": "^4.11.3",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"clsx": "^1.1.1",
"color": "^3.1.3",
"dayjs": "1.10.4",
"email-validator": "2.0.4",
"emoji-mart": "^3.0.1",
"formik": "^2.2.6",
"framer-motion": "4.1.16",
"history": "^5.0.0",
"human-format": "0.11.0",
"jss": "^10.6.0",
"lodash": "^4.17.21",
"material-ui-pickers": "^2.2.4",
"moment": "^2.29.1",
"mui-layout": "^1.2.9",
"phone": "2.4.21",
"prism-react-renderer": "^1.2.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-big-calendar": "^0.33.2",
"react-copy-to-clipboard": "^5.0.3",
"react-div-100vh": "^0.6.0",
"react-dom": "^17.0.2",
"react-element-to-jsx-string": "^14.3.2",
"react-frame-component": "^5.0.0",
"react-github-btn": "^1.2.0",
"react-helmet": "^6.1.0",
"react-jss": "^10.6.0",
"react-load-script": "0.0.6",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-scroll": "^1.8.2",
"react-select": "^5.2.1",
"react-share": "4.4.0",
"react-swipeable-views": "^0.13.9",
"react-use": "17.2.4",
"react-virtualized-auto-sizer": "1.0.5",
"source-map-explorer": "^2.5.2",
"yup": "^0.32.9"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "yarn build && firebase deploy --only hosting",
"lint": "eslint src --ext js,jsx && npm run prettier",
"prettier": "prettier --write '**/*.{js,jsx,json,md}'",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}