-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
75 lines (75 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@unfold/webpack-serve",
"version": "2.0.0",
"description": "Serve webpack assets with webpack-dev-server in pretty print",
"main": "lib/index.js",
"bin": {
"webpack-serve": "lib/cli.js"
},
"files": [
"lib"
],
"scripts": {
"lint": "eslint src",
"prettify": "prettier --trailing-comma all --single-quote --no-semi --print-width 100 --write src/**/*.js",
"prebuild": "rm -r lib || true",
"build": "babel src --out-dir lib",
"prepublishOnly": "npm run build",
"postpublish": "git push origin",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unfold/webpack-serve.git"
},
"keywords": [
"webpack",
"hot",
"reload",
"create-react-app",
"make-development-experience-great-again"
],
"author": "Unfold",
"license": "ISC",
"bugs": {
"url": "https://github.com/unfold/webpack-serve/issues"
},
"homepage": "https://github.com/unfold/webpack-serve#readme",
"eslintConfig": {
"extends": "@unfold/eslint-config"
},
"babel": {
"presets": [
"@unfold/babel-preset"
],
"plugins": [
"transform-runtime"
]
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"prettier --trailing-comma all --single-quote --no-semi --print-width 100 --write",
"git add"
]
},
"devDependencies": {
"@unfold/babel-preset": "^1.0.3",
"@unfold/eslint-config": "^2.0.1",
"babel-cli": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"eslint": "^3.8.1",
"husky": "^0.14.3",
"lint-staged": "^4.0.2",
"prettier": "^1.5.3"
},
"dependencies": {
"chalk": "^1.1.3",
"lodash": "^4.16.4",
"react-dev-utils": "^3.1.1",
"react-error-overlay": "^1.0.10",
"webpack": "^3.5.3",
"webpack-dev-server": "2.6.x",
"yargs": "^6.6.0"
}
}