-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
76 lines (76 loc) · 2.98 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
{
"private": true,
"lint-staged": {
"resources/**/*.{css,js,ts,vue}": [
".\\node_modules\\.bin\\prettier.cmd --write",
"git add"
],
"*.php": [
".\\vendor\\bin\\php-cs-fixer.bat fix --config .php_cs.php",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"prettier:check": ".\\node_modules\\.bin\\prettier.cmd -c resources/**/*.{css,js,ts,vue}",
"prettier:fix": ".\\node_modules\\.bin\\prettier.cmd --write resources/**/*.{css,js,ts,vue}",
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.3.0",
"@types/lodash": "^4.14.144",
"@types/webpack-env": "^1.14.0",
"axios": "^0.19",
"cross-env": "^5.1",
"husky": "^3.0.9",
"laravel-localization-loader": "^1.0.5",
"laravel-mix": "^5.0.0",
"laravel-mix-purgecss": "^4.2.0",
"lint-staged": "^9.4.2",
"postcss": "7.0.20",
"postcss-calc": "^7.0.1",
"postcss-custom-properties": "^9.0.2",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.1.2",
"postcss-url": "^8.0.0",
"prettier": "^1.18.2",
"resolve-url-loader": "^2.3.1",
"tailwindcss": "^1.2.0-canary.1",
"tailwindcss-elevation": "^0.3.3",
"tailwindcss-theming": "^2.2.0",
"tailwindcss-transitions": "^2.1.0",
"ts-loader": "^6.2.0",
"typescript": "^3.7.2",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.1"
},
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@dicebear/avatars": "^3.1.4",
"@dicebear/avatars-initials-sprites": "^1.0.9",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/vue-fontawesome": "^0.1.7",
"@inertiajs/inertia": "^0.1.6",
"@inertiajs/inertia-vue": "^0.1.2",
"lang.js": "^1.1.14",
"laravel-vue-lang": "^2.0.1",
"lodash": "^4.17.13",
"pretty-ms": "^5.0.0",
"v-tooltip": "^2.0.2",
"voca": "^1.4.0",
"vue-ripple-directive": "^2.0.1",
"vue2-transitions": "^0.3.0"
}
}