-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
179 lines (179 loc) · 5.88 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"name": "react-materialui-starter-kit",
"version": "0.0.1",
"main": "src/index.jsx",
"description": "Starter kit for React, Material-UI, Webpack (with Hot Module Replacement) and Babel.",
"keywords": [
"react",
"webpack",
"babel",
"less",
"hmr",
"starter",
"boilerplate",
"material-ui",
"dashboard"
],
"author": "Duy Hoang",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/baoduy/React-MaterialUI-Starter-Kit.git"
},
"bugs": {
"url": "https://github.com/baoduy/React-MaterialUI-Starter-Kit/issues"
},
"homepage": "https://baoduy.github.io/React-MaterialUI-Starter-Kit/",
"scripts": {
"git-jest": "git submodule update --init --remote configs/jest",
"git-webpack": "git submodule update --init --remote configs/webpack",
"prod-server": "node sm-react-node-express/express.js",
"build-less": "lessc ./src/assets/less/material-dashboard-react.less ./src/assets/less/material-dashboard-react.css",
"build": "webpack -p --progress --config=configs/webpack/prod",
"build-analysis": "npm run clean-dist && webpack -p --progress --config=configs/webpack/analyzer",
"build-dev": "webpack-dev-server --config=configs/webpack/dev",
"clean-dist": "rimraf -f -rmdir dist",
"clean-build": "npm-run-all clean-dist build",
"lint": "npm-run-all lint-js lint-less lint-scss",
"lint-js": "jshint",
"lint-less": "lesshint ./src/assets/less",
"lint-scss": "sass-lint 'src/**/*.scss' -v -q",
"sass-lint-install": "npm install -g sass-lint",
"start": "npm run build-dev",
"start-prod": "npm-run-all build prod-server",
"start-analysis": "npm run build-analysis",
"test-bundle": "bundlesize",
"test": "jest --watch --coverage --config=configs/jest/ts.jest.json",
"test-ci": "jest --ci --coverage --config=configs/jest/ts.jest.json && codecov",
"check": "npm-check -p",
"cost": "cost-of-modules --no-install",
"update": "ncu -u -a",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.4.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"@types/enzyme": "^3.9.3",
"@types/googlemaps": "^3.30.19",
"@types/jest": "^24.0.13",
"@types/markerclustererplus": "^2.1.33",
"@types/prop-types": "^15.7.1",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/react-loadable": "^5.5.1",
"@types/uuid": "^3.4.4",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"babel-plugin-import": "^1.11.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-imports": "^2.0.0",
"bundlesize": "^0.18.0",
"compression": "^1.7.4",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"cssnano": "^4.1.10",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^6.0.1",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.4",
"extract-css-chunks-webpack-plugin": "^4.3.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^4.0.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"imagemin": "^6.1.0",
"img-loader": "^3.0.1",
"jest": "^24.7.1",
"jest-html-reporter": "^2.5.0",
"jest-localstorage-mock": "^2.4.0",
"jsdom-global": "^3.0.2",
"jshint": "^2.10.2",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"lesshint": "^6.3.6",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"react-addons-test-utils": "^15.6.2",
"react-hot-loader": "^4.8.4",
"redux-devtools-extension": "^2.13.8",
"redux-immutable-state-invariant": "^2.1.0",
"regenerator-runtime": "^0.13.2",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"size-plugin": "^2.0.0",
"style-loader": "^1.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5",
"url-loader": "^2.0.0",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.1",
"webpack-dev-middleware": "^3.6.2",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1",
"webpack-remove-block-loader": "^1.0.2"
},
"dependencies": {
"@babel/runtime": "^7.4.3",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"axios": "^0.19.0",
"chartist": "^0.11.0",
"classnames": "^2.2.6",
"dayjs": "^1.8.12",
"linq": "^3.2.0",
"lodash": "^4.17.11",
"perfect-scrollbar": "^1.4.0",
"react": "^16.8.6",
"react-chartist": "^0.13.3",
"react-dom": "^16.8.6",
"react-google-maps": "^9.4.5",
"react-loadable": "^5.5.0",
"react-redux": "^7.0.2",
"react-redux-thunk-store": "^1.0.1",
"react-router-dom": "^5.0.0",
"react-table": "^6.10.0",
"redux": "^4.0.1",
"redux-form": "^8.2.0",
"redux-thunk": "^2.3.0",
"redux-toolbelt": "^2.2.2",
"redux-toolbelt-thunk": "^2.1.2",
"url-join": "^4.0.0",
"uuid": "^3.3.2"
},
"jest": {
"coverageDirectory": "<rootDir>/tests/__coverage__/",
"collectCoverage": true
},
"bundlesize": [
{
"path": "./dist/*.*",
"compression": "gzip",
"maxSize": "150 kB"
},
{
"path": "./dist/*.*",
"compression": "none",
"maxSize": "500 kB"
}
]
}