-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.42 KB
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
53
54
55
56
57
{
"name": "server-webpack-plugin",
"version": "0.0.12",
"author": "Corey Larson <coreyleelarson@gmail.com>",
"description": "Automatically starts your server after Webpack finishes building.",
"license": "MIT",
"main": "index.js",
"homepage": "https://github.com/coreyleelarson/server-webpack-plugin",
"repository": {
"type": "git",
"url": "https://github.com/coreyleelarson/server-webpack-plugin.git"
},
"keywords": [
"server",
"webpack",
"plugin",
"watch",
"restart",
"express"
],
"scripts": {
"lint": "eslint **/*.js",
"prebuild": "rimraf dist",
"build": "babel src -D -d dist",
"prepublish": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": "eslint"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-env": "^7.2.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"rimraf": "^2.6.2"
},
"dependencies": {
"chalk": "^2.4.1",
"loglevel": "^1.6.1"
}
}