UNPKG

2.53 kBJSONView Raw
1{
2 "name": "@dvhb/webpack",
3 "description": "Webpack Starter Kit for project",
4 "homepage": "https://github.com/dvhbru/webpack.git",
5 "version": "0.1.0-beta.4",
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": ">=4"
28 },
29 "dependencies": {
30 "babel-core": "6.18.2",
31 "babel-loader": "6.2.7",
32 "babel-preset-es2015": "6.18.0",
33 "babel-preset-stage-0": "6.16.0",
34 "chalk": "1.1.3",
35 "chunk-manifest-webpack-plugin": "0.0.1",
36 "express": "^4.14.1",
37 "findup": "^0.1.5",
38 "html-webpack-plugin": "^2.28.0",
39 "lodash": "^4.17.4",
40 "minimist": "1.2.0",
41 "prettyjson": "^1.2.1",
42 "pug-static": "^1.0.1",
43 "semver-utils": "^1.1.1",
44 "webpack-dev-middleware": "1.8.4",
45 "webpack-hot-middleware": "2.13.1",
46 "webpack-manifest-plugin": "^1.1.0",
47 "webpack-md5-hash": "0.0.5",
48 "webpack-merge": "0.15.0"
49 },
50 "peerDependencies": {
51 "webpack": "1"
52 },
53 "devDependencies": {
54 "babel-eslint": "~7.1.0",
55 "babel-register": "~6.18.0",
56 "cross-env": "~3.1.3",
57 "eslint": "^3.15.0",
58 "gh-pages": "~0.11.0",
59 "lint-staged": "~3.2.5",
60 "mock-require": "~1.3.0",
61 "webpack": "1.13.3"
62 },
63 "scripts": {
64 "test": "echo \"Error: no test specified\" && exit 1",
65 "start": "npm run dev:basic",
66 "dev:basic": "bin/webpack.js server --config examples/basic/dvhb.config.js --verbose",
67 "dev:static-site": "bin/webpack.js server --config examples/static-site/dvhb.config.js --verbose",
68 "start:static-site": "bin/webpack.js server --config examples/static-site/dvhb.config.js --env=production",
69 "prestart:static-site": "npm run build:static-site",
70 "lint": "./node_modules/.bin/eslint . --ext .js",
71 "lint-staged": "lint-staged",
72 "build": "bin/webpack.js build --config examples/basic/dvhb.config.js",
73 "build:static-site": "bin/webpack.js build --config examples/static-site/dvhb.config.js",
74 "gh-pages": "echo \"Error: no gh-pages specified\" && exit 1",
75 "phantomjs": "phantomjs test/phantom.js examples/basic/dist/index.html"
76 },
77 "pre-commit": "lint-staged",
78 "keywords": [
79 "webpack",
80 "dvhb",
81 "generator",
82 "starter",
83 "kit"
84 ]
85}