UNPKG

2.95 kBJSONView Raw
1{
2 "name": "@dvhb/webpack",
3 "description": "Webpack Starter Kit for project",
4 "homepage": "https://github.com/dvhbru/webpack.git",
5 "version": "1.0.0",
6 "author": {
7 "name": "Aleksey Subbotenko",
8 "url": "https://dvhb.ru/"
9 },
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/dvhbru/webpack.git"
13 },
14 "bugs": {
15 "url": "https://github.com/dvhbru/webpack/issues"
16 },
17 "license": "MIT",
18 "main": "scripts/index.js",
19 "bin": {
20 "dvhb-webpack": "bin/webpack.js"
21 },
22 "files": [
23 "bin",
24 "scripts"
25 ],
26 "engines": {
27 "node": ">=6"
28 },
29 "dependencies": {
30 "autoprefixer": "^6.7.4",
31 "babel-core": "6.18.2",
32 "babel-loader": "6.2.7",
33 "babel-preset-es2015": "6.18.0",
34 "babel-preset-stage-0": "6.16.0",
35 "chalk": "1.1.3",
36 "chunk-manifest-webpack-plugin": "0.0.1",
37 "css-loader": "^0.26.1",
38 "csso-loader": "^0.2.1",
39 "express": "^4.14.1",
40 "express-pug": "^1.0.0",
41 "extract-text-webpack-plugin": "^1.0.1",
42 "findup": "^0.1.5",
43 "html-webpack-plugin": "^2.28.0",
44 "json-loader": "^0.5.4",
45 "lodash": "^4.17.4",
46 "minimist": "1.2.0",
47 "postcss": "^5.2.14",
48 "postcss-loader": "^1.3.1",
49 "prettyjson": "^1.2.1",
50 "pug": "^2.0.0-beta3",
51 "pug-loader": "^2.3.0",
52 "raw-loader": "^0.5.1",
53 "semver-utils": "^1.1.1",
54 "style-loader": "^0.13.1",
55 "stylus": "^0.54.5",
56 "stylus-loader": "^2.5.0",
57 "webpack-cleanup-plugin": "^0.4.2",
58 "webpack-dev-middleware": "1.8.4",
59 "webpack-hot-middleware": "2.13.1",
60 "webpack-manifest-plugin": "^1.1.0",
61 "webpack-md5-hash": "0.0.5",
62 "webpack-merge": "0.15.0"
63 },
64 "peerDependencies": {
65 "webpack": "1"
66 },
67 "devDependencies": {
68 "babel-eslint": "~7.1.0",
69 "babel-register": "~6.18.0",
70 "cross-env": "~3.1.3",
71 "eslint": "^3.15.0",
72 "gh-pages": "~0.11.0",
73 "lint-staged": "~3.2.5",
74 "mock-require": "~1.3.0",
75 "webpack": "1.13.3"
76 },
77 "scripts": {
78 "test": "echo \"Error: no test specified\" && exit 1",
79 "start": "npm run dev:basic",
80 "dev:basic": "bin/webpack.js server --config examples/basic/dvhb.config.js --verbose",
81 "dev:static-site": "bin/webpack.js server --config examples/static-site/dvhb.config.js --verbose",
82 "start:static-site": "bin/webpack.js server --config examples/static-site/dvhb.config.js --env=production",
83 "prestart:static-site": "npm run build:static-site",
84 "lint": "./node_modules/.bin/eslint . --ext .js",
85 "lint-staged": "lint-staged",
86 "build": "bin/webpack.js build --config examples/basic/dvhb.config.js",
87 "build:static-site": "bin/webpack.js build --config examples/static-site/dvhb.config.js",
88 "gh-pages": "echo \"Error: no gh-pages specified\" && exit 1",
89 "phantomjs": "phantomjs test/phantom.js examples/basic/dist/index.html"
90 },
91 "pre-commit": "lint-staged",
92 "keywords": [
93 "webpack",
94 "dvhb",
95 "generator",
96 "starter",
97 "kit"
98 ]
99}