This repository has been archived by the owner on May 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"name": "laravel-mix-sass-resources-loader",
"version": "1.0.6",
"description": "Plugin for larvel-mix to allow injecting sass-resource files via the sass-resources-loader",
"main": "dist/plugin.js",
"scripts": {
"watch": "babel -w -o dist/plugin.js -s true --no-comments src/plugin.js",
"build": "npm run prod && npm run prod-min",
"prod": "babel -o dist/plugin.js -s true --no-comments src/plugin.js",
"prod-min": "babel --minified -o dist/plugin.min.js -s true --no-comments src/plugin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmeysel/laravel-mix-sass-resources-loader.git"
},
"babel": {
"presets": [
"@babel/env"
]
},
"keywords": [
"webpack",
"sass",
"laravel-mix",
"resources"
],
"author": "Ludwig Meysel",
"license": "MIT",
"bugs": {
"url": "https://github.com/lmeysel/laravel-mix-sass-resources-loader/issues"
},
"homepage": "https://github.com/lmeysel/laravel-mix-sass-resources-loader#readme",
"devDependencies": {
"@babel/preset-env": "^7.3.1",
"laravel-mix": "^6.0.0-beta.14",
"laravel-mix2": "npm:laravel-mix@^2.1.14",
"laravel-mix4": "npm:laravel-mix@^4.1.4",
"laravel-mix6": "npm:laravel-mix@^6.0.0-beta.14",
"postcss": "^8.1.10",
"resolve-url-loader": "^2.3.2",
"sass": "^1.29.0",
"sass-loader": "^9.0.3",
"vue": "^2.6.12",
"vue-loader": "^15.9.5",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0"
}
}