-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "css-loaders",
"version": "1.0.0",
"description": "Pure css loaders samples",
"main": "index.html",
"engines": {
"node": ">=12.16.0"
},
"scripts": {
"serve": "serve",
"build": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --open --config webpack.dev.js",
"watch": "npm start --watch"
},
"repository": {
"type": "git",
"url": "git@github.com:hideyuk1/css-loaders.git"
},
"keywords": [
"css",
"loaders"
],
"author": "Lucas China",
"license": "MIT",
"bugs": {
"url": "https://github.com/hideyuk1/css-loaders/issues"
},
"homepage": "https://github.com/hideyuk1/css-loaders",
"devDependencies": {
"@babel/core": "7.2.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"extract-loader": "^4.0.3",
"file-loader": "^5.1.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"serve": "^11.3.2",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
}
}