-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.74 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
{
"name": "react-es6-starter",
"version": "0.0.0",
"description": "A boilerplate for React projects with Webpack and ES6",
"scripts": {
"start": "webpack-dev-server --hot",
"build": "cross-env NODE_ENV=production webpack",
"stats": "cross-env NODE_ENV=production webpack --profile --json > stats.json",
"base-stylelint": "stylelint --syntax scss --ignore-path .gitignore",
"base-prettier": "prettier --ignore-path .gitignore",
"base-eslint": "eslint --ignore-path .gitignore --rule \"no-console: 1\"",
"format": "npm run base-eslint -- --fix \"**/*.js\" && npm run base-prettier -- --write \"**/*.js\" && npm run base-stylelint -- --fix \"**/*.scss\"",
"lint-css": "npm run base-stylelint -- \"**/*.scss\"",
"lint-prettier": "npm run base-prettier -- -l \"**/*.js\"",
"lint-eslint": "npm run base-eslint -- --max-warnings 0 \"**/*.js\"",
"lint": "npm run lint-prettier && npm run lint-eslint && npm run lint-css",
"eslint-find-unused-rules": "eslint-find-rules -u .eslintrc -n",
"stylelint-find-unused-rules": "stylelint-find-rules"
},
"license": "MIT",
"dependencies": {
"@babel/runtime": "7.2.0",
"cssrecipes-defaults": "0.5.0",
"normalize.css": "8.0.1",
"prop-types": "15.6.2",
"react": "16.5.2",
"react-dom": "16.5.2",
"react-router-dom": "4.3.1"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/plugin-proposal-decorators": "7.2.3",
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"@babel/plugin-transform-destructuring": "7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"autoprefixer": "9.4.4",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"clean-webpack-plugin": "0.1.19",
"cross-env": "5.2.0",
"css-loader": "1.0.0",
"cssnano": "4.1.8",
"eslint": "4.19.1",
"eslint-config-react": "1.1.7",
"eslint-find-rules": "3.3.1",
"eslint-loader": "2.1.1",
"eslint-plugin-compat": "2.6.2",
"eslint-plugin-react": "7.9.1",
"file-loader": "2.0.0",
"friendly-errors-webpack-plugin": "1.7.0",
"html-webpack-plugin": "3.2.0",
"node-sass": "4.13.1",
"postcss-loader": "3.0.0",
"prettier": "1.15.3",
"react-hot-loader": "4.6.3",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"stylelint": "9.3.0",
"stylelint-find-rules": "1.1.1",
"stylelint-webpack-plugin": "0.10.5",
"url-loader": "1.1.2",
"webpack": "4.28.3",
"webpack-cli": "3.2.0",
"webpack-dev-server": "3.1.14"
},
"keywords": [
"react",
"reactjs",
"react-router",
"hot",
"reload",
"hmr",
"webpack",
"boilerplate",
"starter"
]
}