forked from nihey/webpack-single-page-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "webpack-single-page-boilerplate",
"version": "0.0.0",
"description": "Simple Page app boilerplate using webpack",
"main": "scripts/index.js",
"scripts": {
"build": "webpack",
"watch": "webpack -d --watch",
"production": "NODE_ENV=production webpack -p",
"test": "eslint . && webpack -d && webpack -p"
},
"keywords": [
"boilerplate",
"webpack",
"babel",
"less"
],
"author": "Nihey Takizawa <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-core": "^6.3.13",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"config": "^1.16.0",
"css-loader": "^0.23.0",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.4",
"img-loader": "^1.1.0",
"json-loader": "^0.5.2",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"node-libs-browser": "^0.5.2",
"style-loader": "^0.13.0",
"webpack": "^1.10.1"
},
"devDependencies": {
"eslint": "^1.6.0",
"html-loader": "^0.4.3",
"indexhtml-webpack-plugin": "^0.1.9"
}
}