This repository was archived by the owner on Mar 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.64 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.64 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
77
78
79
80
81
82
83
84
{
"name": "react-kit",
"version": "1.0.0",
"description": "Ready to go React project",
"main": "index.js",
"author": "Thomas Thiebaud",
"license": "MIT",
"scripts": {
"build": "npm run clean; npm run build:prod",
"build:dev": "webpack --config config/webpack.dev.js",
"build:prod": "webpack --config config/webpack.prod.js",
"clean": "rimraf dist/ yarn-error.log npm-debug.log",
"lint": "npm run lint:code && npm run lint:style",
"lint:fix": "npm run lint:code:fix && npm run lint:style:fix",
"lint:code": "eslint .",
"lint:code:fix": "eslint --fix .",
"lint:style": "stylelint 'src/**/*.scss'",
"lint:style:fix": "stylelint --fix 'src/**/*.scss'",
"start": "npm run start:dev",
"start:dev": "webpack-serve --config config/webpack.dev.js",
"start:prod": "npm run build && http-server --cors dist/"
},
"pre-commit": [
"lint"
],
"dependencies": {
"@babel/polyfill": "7.0.0",
"bulma": "0.7.1",
"normalize.css": "8.0.0",
"prop-types": "15.6.2",
"react": "16.5.1",
"react-dom": "16.5.1",
"react-hot-loader": "4.3.8",
"react-loadable": "5.5.0",
"react-redux": "5.0.7",
"react-router-config": "1.0.0-beta.4",
"react-router-dom": "4.3.1",
"react-spinkit": "3.0.0",
"redux": "3.7.2",
"redux-saga": "0.16.0"
},
"devDependencies": {
"@babel/core": "7.0.1",
"@babel/plugin-transform-runtime": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-react": "7.0.0",
"autoprefixer": "9.1.5",
"babel-eslint": "9.0.0",
"babel-loader": "8.0.2",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-plugin-transform-regenerator": "6.26.0",
"css-loader": "1.0.0",
"cssnano": "4.1.0",
"dotenv-webpack": "1.5.7",
"eslint": "5.6.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "3.0.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-react": "7.11.1",
"file-loader": "2.0.0",
"html-webpack-plugin": "3.2.0",
"http-server": "0.11.1",
"mini-css-extract-plugin": "0.4.2",
"node-sass": "4.9.3",
"optimize-css-assets-webpack-plugin": "5.0.1",
"postcss-loader": "3.0.0",
"pre-commit": "1.2.2",
"prettier": "1.14.2",
"rimraf": "2.6.2",
"sass-loader": "7.1.0",
"style-loader": "0.23.0",
"stylelint": "9.5.0",
"stylelint-config-prettier": "4.0.0",
"stylelint-config-standard": "18.2.0",
"stylelint-prettier": "1.0.1",
"uglifyjs-webpack-plugin": "2.0.0",
"url-loader": "1.1.1",
"webpack": "4.19.0",
"webpack-cli": "3.1.0",
"webpack-serve": "2.0.2"
}
}