-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.33 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
{
"name": "hda-starter-kit",
"version": "1.1.0",
"description": "Hypermedia Driven Application starter kit",
"main": "tailwind.config.js",
"scripts": {
"dev": "npm run clean && mix watch --hot",
"debug": "npm run clean && SOURCE_MAPS=true LINT=true mix watch --hot",
"build": "npm run clean && SOURCE_MAPS=false mix --production",
"clean": "rimraf web/dist/* web/{,**/}*{json}",
"fix-scripts": "eslint --fix 'src/scripts/**/*.{vue,js,jsx,mjs}'",
"fix-styles": "stylelint --fix 'src/styles/**/*.{css,scss}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/croxton/laravel-mix-tailwind-starter.git"
},
"author": "Mark Croxton",
"license": "ISC",
"bugs": {
"url": "https://github.com/croxton/laravel-mix-tailwind-starter/issues"
},
"homepage": "https://github.com/croxton/laravel-mix-tailwind-starter#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.5.4",
"@vue-leaflet/vue-leaflet": "^0.10.1",
"autoprefixer": "^10.4.12",
"eslint": "8.54.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.19.2",
"eslint-webpack-plugin": "^4.0.1",
"globby": "^11.1.0",
"install": "^0.13.0",
"laravel-mix": "^6.0.49",
"laravel-mix-eslint": "^0.2.0",
"laravel-mix-imagemin": "^1.0.3",
"laravel-mix-make-file-hash": "^2.2.0",
"laravel-mix-polyfill": "^3.0.1",
"laravel-mix-svg-sprite": "^2.0.0",
"npm": "^10.2.4",
"postcss": "^8.4.31",
"postcss-preset-env": "^9.3.0",
"rimraf": "^5.0.5",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"stylelint": "^15.11.0",
"stylelint-config-recommended-scss": "^13.1.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.3.1",
"tailwindcss": "^3.3.5",
"vue": "^3.3.9",
"vue-loader": "^17.3.1"
},
"dependencies": {
"alpinejs": "^3.13.3",
"async-alpine": "^1.0.0",
"lazysizes": "^5.3.2",
"plyr": "^3.7.3",
"pubsub-js": "^1.9.3"
},
"overrides": {
"svg-baker": {
"postcss": "8.4.31"
}
},
"browserslist": [
"> 0.5%",
"safari >14",
"not op_mini all",
"not UCAndroid 12",
"not ios <14.5",
"not dead"
]
}