forked from jovertical/laravel-react-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·66 lines (66 loc) · 2.45 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
{
"private": true,
"scripts": {
"format": "prettier --write 'resources/**/*.{css,js,jsx}'",
"dev": "npm run development",
"development": "node_modules/.bin/webpack --env.NODE_ENV=development --progress --hide-modules --colors",
"watch": "npm run development -- --watch",
"watch-poll": "npm run development -- --watch-poll",
"prod": "npm run production",
"production": "node_modules/.bin/webpack --env.NODE_ENV=production --no-progress --hide-modules --colors",
"heroku-postbuild": "npm run prod"
},
"dependencies": {
"@babel/runtime": "^7.6.2",
"@date-io/moment": "^1.3.11",
"@loadable/component": "^5.10.3",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@material-ui/lab": "^3.0.0-alpha.30",
"axios": "^0.18.1",
"classnames": "^2.2.6",
"formik": "^1.5.8",
"lang.js": "^1.1.14",
"material-ui-pickers": "^2.2.4",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"react-dropzone": "^10.1.9",
"react-loading-skeleton": "^1.1.2",
"react-router-dom": "^4.3.1",
"yup": "^0.26.10"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^0.1.19",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.14.3",
"event-hooks-webpack-plugin": "^2.1.4",
"file-loader": "^2.0.0",
"imagemin": "^6.1.0",
"imagemin-gifsicle": "^6.0.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^6.0.1",
"imagemin-svgo": "^7.0.0",
"img-loader": "^3.0.1",
"laravel-localization-loader": "^1.0.5",
"mini-css-extract-plugin": "^0.4.5",
"node-notifier": "^5.4.3",
"prettier": "1.16.4",
"sw-precache-webpack-plugin": "^0.11.5",
"url-loader": "^1.1.2",
"webpack": "^4.41.0",
"webpack-clean-obsolete-chunks": "^0.4.0",
"webpack-cli": "^3.3.9"
}
}