-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.78 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
{
"name": "webpack2-js-boilerplate",
"version": "1.0.0",
"description": "Webpack 2 setup for fast start a new JavaScript project",
"main": "app.js",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --hot --inline",
"build": "./node_modules/.bin/webpack",
"build:prod": "NODE_ENV='production' ./node_modules/.bin/webpack -p",
"build_watch": "./node_modules/.bin/webpack -w",
"build_watch:prod": "NODE_ENV='production' ./node_modules/.bin/webpack -p -w",
"eslint": "./node_modules/.bin/eslint ./src/**/*.js",
"stylelint": "./node_modules/.bin/stylelint ./src/**/*.pcss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olegbilyk/webpack2-js-boilerplate.git"
},
"keywords": [],
"author": "Oleg Bilyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/olegbilyk/webpack2-js-boilerplate/issues"
},
"homepage": "https://github.com/olegbilyk/webpack2-js-boilerplate#readme",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"css-loader": "^0.27.3",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"postcss": "^5.2.16",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.10.0",
"postcss-load-config": "^1.2.0",
"postcss-loader": "^1.3.3",
"postcss-short": "^3.0.3",
"style-loader": "^0.16.0",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
}
}