-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.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
{
"name": "luma-laravel",
"version": "1.1.0",
"private": true,
"engines": {
"node": "12.x"
},
"scripts": {
"dev": "npm run development",
"development": "npm run dev:main & npm run dev:css",
"dev:main": "mix",
"dev:css": "npm run dev:main -- --mix-config=webpack.mix.css",
"watch": "npm run watch:main & npm run watch:css",
"watch:main": "mix watch",
"watch:css": "mix watch --mix-config=webpack.mix.css",
"watch-poll": "npm run watch -- --watch-options-poll=1000",
"hot": "npm run hot:main & npm run hot:css",
"hot:main": "mix watch --hot",
"hot:css": "mix watch --hot --mix-config=webpack.mix.css",
"prod": "npm run production",
"production": "npm run prod:main && npm run prod:css",
"prod:main": "mix --production",
"prod:css": "npm run prod:main -- --mix-config=webpack.mix.css",
"heroku-postbuild": "npm run production"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.14.0",
"@fullhuman/postcss-purgecss": "^3.0.0",
"@inertiajs/inertia": "^0.4.1",
"@inertiajs/inertia-vue": "^0.3.2",
"@inertiajs/progress": "^0.1.2",
"@material/elevation": "^7.0.0",
"@mjhenkes/postcss-rtl": "^2.0.0",
"axios": "^0.19",
"bootstrap": "^4.5.0",
"bootstrap-custom-checkbox-toggle": "^1.0.0",
"core-js": "^3.6.5",
"corner-ribbon": "^1.0.0",
"cross-env": "^7.0",
"dom-factory": "^1.0.3",
"dot-object": "^2.1.4",
"fm-app-settings": "^5.4.0",
"fm-avatar": "^1.0.0",
"fm-loader": "^1.0.0",
"fm-plugin-chartjs": "^1.4.0",
"fm-plugin-quill": "^1.0.1",
"highlight.js": "^10.1.2",
"jquery": "^3.5.1",
"laravel-jetstream": "^1.0.0",
"laravel-mix": "^6.0.0-beta.17",
"laravel-mix-merge-manifest": "^2.0.0-beta.2",
"lodash": "^4.17.19",
"material-design-icons-iconfont": "^5.0.1",
"material-design-kit": "^2.2.0",
"moment": "^2.27.0",
"moment-range": "^4.0.2",
"moment-timezone": "^0.5.31",
"perfect-scrollbar": "^1.4.0",
"popper.js": "^1.14.7",
"portal-vue": "^2.1.7",
"postcss": "^8.2.4",
"postcss-import": "^12.0.1",
"process": "^0.11.10",
"resolve-url-loader": "^3.1.0",
"sass": "^1.27.0",
"sass-loader": "^10.0.3",
"sass-math": "^1.0.0",
"sass-strip-unit": "^1.0.0",
"sidebar-style-guide": "^2.0.0",
"vue": "^2.6.10",
"vue-i18n": "^8.22.0",
"vue-icons-demo-app": "^1.0.2",
"vue-loader": "^15.9.6",
"vue-luma": "file:resources/vendor/vue-luma",
"vue-meta": "^2.4.0",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.5.1",
"vuex-persistedstate": "^4.0.0-beta.1",
"webpack-chunk-rename-plugin": "^1.0.3"
}
}