-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.92 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
106
107
108
109
110
111
112
113
114
{
"name": "fuse-react-app",
"version": "3.0.0",
"private": true,
"dependencies": {
"@date-io/date-fns": "1.3.6",
"@material-ui/core": "4.0.1",
"@material-ui/icons": "4.0.1",
"@material-ui/pickers": "3.0.0",
"@material-ui/styles": "4.0.1",
"auth0-lock": "11.16.0",
"autosuggest-highlight": "3.1.1",
"axios": "0.19.0",
"axios-mock-adapter": "1.16.0",
"bootstrap": "^4.3.1",
"chart.js": "2.8.0",
"date-fns": "2.0.0-alpha.27",
"downshift": "3.2.10",
"firebase": "6.1.0",
"formsy-react": "1.1.5",
"google-map-react": "1.1.4",
"history": "^4.9.0",
"jsonwebtoken": "8.5.1",
"jss": "10.0.0-alpha.16",
"jss-extend": "6.2.0",
"jwt-decode": "2.2.0",
"keycode": "2.2.0",
"lodash": "4.17.11",
"material-table": "1.39.0",
"material-ui-popup-state": "1.3.2",
"mobile-detect": "1.4.3",
"moment": "2.24.0",
"mui-datatables": "^2.8.1",
"notistack": "0.8.5",
"path-to-regexp": "3.0.0",
"perfect-scrollbar": "1.4.0",
"prismjs": "1.16.0",
"qs": "6.7.0",
"raw-loader": "1.0.0",
"react": "16.8.6",
"react-autosuggest": "9.4.3",
"react-beautiful-dnd": "11.0.3",
"react-big-calendar": "0.21.0",
"react-chartjs-2": "2.7.6",
"react-datetime": "^2.16.3",
"react-dom": "16.8.6",
"react-draggable": "3.3.0",
"react-frame-component": "4.1.0",
"react-geosuggest": "^2.12.0",
"react-masonry-css": "1.0.12",
"react-number-format": "4.0.8",
"react-player": "^1.11.2",
"react-popper": "1.0.2",
"react-redux": "7.1.0-rc.1",
"react-router-config": "5.0.0",
"react-router-dom": "5.0.0",
"react-scripts": "3.0.1",
"react-select": "2.4.4",
"react-sort-search-table": "^0.1.3",
"react-swipeable-views": "^0.13.1",
"react-table": "6.10.0",
"react-text-mask": "5.4.3",
"react-virtualized": "9.21.1",
"react-window": "1.8.2",
"reactstrap": "^8.0.1",
"redux": "4.0.1",
"redux-thunk": "2.3.0",
"styled-components": "^4.3.2",
"typeface-muli": "0.0.71",
"velocity-react": "1.4.3"
},
"resolutions": {
"react": "16.8.6",
"react-dom": "16.8.6"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/node": "7.4.5",
"@babel/preset-env": "7.4.5",
"cross-env": "5.2.0",
"globby": "9.2.0",
"js-beautify": "1.10.0",
"marked": "0.6.2",
"purgecss": "1.3.0",
"tailwindcss": "1.0.2",
"webpack-bundle-analyzer": "3.3.2"
},
"scripts": {
"start": "yarn run tailwind && react-scripts start",
"build": "yarn run tailwind && node ./purge-tailwindcss.js && cross-env GENERATE_SOURCEMAP=false react-scripts build",
"tailwind": "./node_modules/.bin/tailwind build ./src/styles/tailwind.base.css -c ./tailwind.js -o ./src/styles/tailwind.css",
"test": "react-scripts test --env=node",
"eject": "react-scripts eject",
"build-docs": "find ./src/app/main/documentation/material-ui-components \\( -name '*.ts' -o -name '*.tsx' \\) -type f -delete && babel-node src/app/main/documentation/material-ui-components/build.js",
"build-stats": "yarn run build --stats",
"bundle-report": "yarn run build-stats && webpack-bundle-analyzer build/bundle-stats.json -m static -r build/bundle-stats.html -O"
},
"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",
"ie 11"
]
}
}