-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathpackage.json
46 lines (46 loc) · 1.79 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
{
"name": "mui-rff-example",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"start": "parcel index.html",
"build": "rm -rf dist .parcel-cache; parcel build index.html --public-url './'",
"ui": "yarn upgradeInteractive",
"run": "python3 -m http.server --directory=dist"
},
"dependencies": {
"react-app-polyfill": "^3.0.0"
},
"devDependencies": {
"parcel": "2.12.0"
},
"alias": {
"@babel/runtime": "../node_modules/@babel/runtime",
"@date-io/core": "../node_modules/@date-io/core",
"@date-io/date-fns": "../node_modules/@date-io/date-fns",
"@emotion/react": "../node_modules/@emotion/react",
"@emotion/styled": "../node_modules/@emotion/styled",
"@mui/base": "../node_modules/@mui/base",
"@mui/material": "../node_modules/@mui/material",
"@mui/system": "../node_modules/@mui/system",
"@mui/utils": "../node_modules/@mui/utils",
"@mui/x-date-pickers": "../node_modules/@mui/x-date-pickers",
"@popperjs/core": "../node_modules/@popperjs/core",
"@types/react": "../node_modules/@types/react",
"@types/react-dom": "../node_modules/@types/react-dom",
"@types/yup": "../node_modules/@types/yup",
"clsx": "../node_modules/clsx",
"date-fns": "../node_modules/date-fns",
"hoist-non-react-statics": "../node_modules/hoist-non-react-statics",
"final-form": "../node_modules/final-form",
"react": "../node_modules/react",
"react-is": "../node_modules/react-is",
"react-dom": "../node_modules/react-dom",
"react-final-form": "../node_modules/react-final-form",
"react-transition-group": "../node_modules/react-transition-group",
"prop-types": "../node_modules/prop-types",
"scheduler/tracing": "../node_modules/scheduler/tracing-profiling",
"yup": "../node_modules/yup"
}
}