-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 918 Bytes
/
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
{
"name": "webpack-preset",
"version": "0.2.0",
"description": "Zero config webpack-powered development!",
"author": "Tim Dorr <timdorr@timdorr.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/webpack-preset/webpack-preset.git"
},
"homepage": "https://github.com/webpack-preset/webpack-preset",
"main": "index.js",
"bin": "./bin/webpack-preset.js",
"files": [
"README.md",
"src/*",
"static/*",
"bin/*"
],
"scripts": {
"start": "node ./bin/webpack-preset.js",
"lint": "eslint src",
"test": "npm run lint"
},
"dependencies": {
"express": "^4.13.3",
"webpack": "^1.12.11",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"eslint": "^1.10.3",
"eslint-config-rackt": "^1.1.1",
"lerna": "2.0.0-beta.20"
}
}