-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.87 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.87 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-cli",
"version": "1.0.0",
"description": "a simple tool to create base webpack&react project",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "./node_modules/pm2/bin/pm2 start src/app.js -n React-cli --watch",
"precommit": "lint-staged",
"startfe": "webpack-dev-server --progress --devtool cheap-module-source-map"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier-eslint --write",
"eslint --fix",
"git add"
],
"*.{css,scss}": [
"stylelint --syntax=scss --fix",
"git add"
]
},
"keywords": [
"react-cli",
"react",
"cli",
"create",
"create-react",
"react-init",
"init"
],
"prettier": {
"singleQuote": true,
"semi": true
},
"author": "muyu",
"license": "MIT",
"dependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.7",
"eslint-config-recommended": "^3.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"husky": "^0.14.3",
"koa": "^2.4.1",
"koa-body": "^2.5.0",
"koa-pug": "^3.0.0-2",
"koa-router": "^7.3.0",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"lint-staged": "^7.2.0",
"node-sass": "^4.7.2",
"pm2": "^2.9.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.2.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
},
"devDependencies": {
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1"
}
}