forked from sorrycc/roadhog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.43 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "roadhog",
"version": "1.2.2",
"description": "Cli tool for serve and build react app, based on create-react-app, support JSON pattern config.",
"bin": {
"roadhog": "./bin/roadhog.js"
},
"keywords": [
"roadhog",
"react",
"cli",
"create-react-app",
"webpack"
],
"authors": [
"chencheng <sorrycc@gmail.com> (https://github.com/sorrycc)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sorrycc/roadhog/issues"
},
"files": [
"bin",
"src",
"lib"
],
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"lint": "eslint --ext .js src",
"test": "npm run lint && npm run build && cross-env NODE_ENV=test nyc mocha --no-timeouts test/**/*-test.js",
"debug": "cross-env NODE_ENV=test mocha --require babel-register --no-timeouts test/**/*-test.js",
"report": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"precommit": "npm run lint"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": true,
"instrument": false
},
"dependencies": {
"atool-monitor": "^0.4.3",
"autoprefixer": "^7.1.1",
"awesome-typescript-loader": "^3.1.3",
"babel-core": "^6.20.0",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-require": "^3.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"body-parser": "^1.17.2",
"bundle-loader": "^0.5.5",
"case-sensitive-paths-webpack-plugin": "^1.1.4",
"chalk": "^1.1.3",
"chokidar": "^1.7.0",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.0.1",
"cross-spawn": "^5.0.1",
"css-loader": "^0.28.2",
"explain-error": "^1.0.4",
"express-http-proxy": "^0.11.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.1",
"filesize": "^3.5.10",
"fs-extra": "^3.0.1",
"glob": "^7.1.2",
"gzip-size": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.17.3",
"is-plain-object": "^2.0.3",
"istanbul": "^0.4.5",
"less": "^2.7.1",
"less-loader": "^4.0.3",
"lodash.pullall": "^4.2.0",
"lodash.uniq": "^4.5.0",
"mocha": "^3.4.2",
"parse-json-pretty": "^0.1.0",
"postcss": "^6.0.1",
"postcss-loader": "^1.3.3",
"react-dev-utils": "^2.0.1",
"recursive-readdir": "^2.2.1",
"rimraf": "^2.5.4",
"strip-ansi": "^3.0.1",
"strip-json-comments": "^2.0.1",
"style-loader": "^0.18.1",
"svg-sprite-loader": "^3.1.2",
"system-bell-webpack-plugin": "^1.0.0",
"typescript": "^2.3.3",
"url-loader": "^0.5.7",
"webpack": "^3.0.0-rc.1",
"webpack-dev-server": "^2.4.5",
"webpack-visualizer-plugin": "^0.1.6",
"yargs": "^8.0.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^7.2.1",
"cross-env": "^5.0.4",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"expect": "^1.20.2",
"got": "^6.7.1",
"husky": "^0.13.3",
"node-sass": "^4.5.3",
"nyc": "^10.3.2",
"postcss-pxtorem": "^4.0.0",
"sass-loader": "^6.0.6"
}
}