forked from sorrycc/roadhog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.17 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
{
"name": "roadhog",
"version": "2.5.0-beta.2",
"description": "Cli tool for creating react apps, configurable version of create-react-app.",
"bin": {
"roadhog": "./bin/roadhog.js"
},
"keywords": [
"roadhog",
"react",
"cli",
"create-react-app",
"webpack"
],
"authors": [
"chencheng <[email protected]> (https://github.com/sorrycc)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sorrycc/roadhog/issues"
},
"files": [
"bin",
"src",
"lib",
"template"
],
"scripts": {
"build": "node scripts/build.js",
"test": "echo empty test",
"lint": "eslint --ext .js src",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma all --single-quote --write",
"git add"
]
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.0.0",
"af-webpack": "^0.23.0-beta.1",
"atool-monitor": "^0.4.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-umi": "^1.0.0",
"body-parser": "^1.17.2",
"chalk": "^1.1.3",
"chokidar": "^1.7.0",
"debug": "^3.1.0",
"glob": "^7.1.2",
"graceful-process": "^1.1.0",
"http-proxy-middleware": "^0.18.0",
"is-plain-object": "^2.0.3",
"lodash.escaperegexp": "^4.1.2",
"parse-json-pretty": "^0.1.0",
"strip-json-comments": "^2.0.1",
"umi-test": "^0.6.0-beta.1",
"update-notifier": "^2.3.0",
"yargs": "^8.0.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"babel-eslint": "^8.0.2",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"expect": "^1.20.2",
"got": "^6.7.1",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "^1.8.1",
"rimraf": "^2.6.2",
"vinyl-fs": "^3.0.2"
}
}