forked from anamanaguchi/es6-scss-webpack-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "es6-scss-webpack-seed",
"version": "0.0.1",
"description": "Simple seed for es6 application with scss based on webpack.",
"main": "index.html",
"scripts": {
"start": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack -d && webpack-dev-server --content-base dist/ --port 4200"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anamanaguchi/es6-scss-webpack-seed.git"
},
"keywords": [
"javascript",
"es6",
"webpack",
"seed",
"starter",
"scss"
],
"author": "Michal Drabikowski",
"license": "ISC",
"bugs": {
"url": "https://github.com/anamanaguchi/es6-scss-webpack-seed/issues"
},
"homepage": "https://github.com/anamanaguchi/es6-scss-webpack-seed#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.22.0",
"copyfiles": "^1.2.0",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.0",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.2",
"style-loader": "^0.18.2",
"webpack": "^3.5.3",
"webpack-dev-server": "^2.4.1"
}
}