-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.73 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.73 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_starter_kit",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --config webpack/webpack.development.js",
"build": "webpack --config webpack/webpack.production.js",
"serve": "serve -l \"$PORT\" public --single",
"lint:js": "eslint --ext .js src",
"lint:style": "stylelint \"src/**/*.scss\" --syntax scss",
"prettier": "prettier --write src/**/*.{js,scss}"
},
"author": "magora-systems",
"license": "",
"contributors": [
{
"name": "Aleksey Kondratev",
"email": "allex.kondratev@gmail.com",
"url": ""
}
],
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-bundle": "^1.0.4",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^3.8.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"react-hot-loader": "^4.8.7",
"serve": "^11.0.0",
"stylelint": "^10.0.1",
"stylelint-config-prettier": "^5.1.0",
"stylelint-config-standard": "^18.3.0",
"webpack-dev-server": "^3.4.1"
},
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.4",
"autoprefixer": "^9.5.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-import": "^1.11.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.19.0",
"clean-webpack-plugin": "^2.0.2",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "^2.1.1",
"directory-named-webpack-plugin": "^4.0.1",
"file-loader": "^3.0.1",
"hoist-non-react-statics": "^3.3.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.6.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"progress-bar-webpack-plugin": "^1.12.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.3",
"webpack": "^4.31.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1"
}
}