forked from anonaddy/anonaddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.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
{
"private": true,
"scripts": {
"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",
"format": "prettier --write 'resources/**/*.{css,js,vue}'"
},
"dependencies": {
"axios": "^0.18.1",
"cross-env": "^5.2.1",
"dayjs": "^1.8.35",
"laravel-mix": "^4.1.4",
"laravel-mix-purgecss": "^4.2.0",
"lodash": "^4.17.20",
"portal-vue": "^2.1.7",
"postcss-import": "^11.1.0",
"postcss-nesting": "^5.0.0",
"resolve-url-loader": "^2.3.2",
"tailwindcss": "^1.8.10",
"tippy.js": "^4.3.5",
"v-clipboard": "^2.2.3",
"vue": "^2.6.12",
"vue-good-table": "^2.21.0",
"vue-multiselect": "^2.1.6",
"vue-notification": "^1.3.20",
"vue-template-compiler": "^2.6.12",
"vuedraggable": "^2.24.1"
},
"devDependencies": {
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"prettier": "1.16.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,js,vue}": [
"npm run format --",
"git add"
],
"*.php": [
"composer format",
"git add"
]
}
}