-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·99 lines (99 loc) · 3.27 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "web_app",
"version": "0.0.1-alpha",
"description": "Web Client",
"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": "[email protected]",
"url": ""
}
],
"devDependencies": {
"@hot-loader/react-dom": "^16.8.6",
"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",
"serve": "^11.0.0",
"stylelint": "^10.1.0",
"stylelint-config-prettier": "^5.2.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-export-default-from": "^7.5.2",
"@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",
"antd": "^3.19.3",
"autoprefixer": "^9.5.1",
"axios": "^0.19.0",
"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-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^2.0.2",
"compression-webpack-plugin": "^2.0.0",
"config": "^3.1.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"directory-named-webpack-plugin": "^4.0.1",
"dotenv": "^8.0.0",
"file-loader": "^3.0.1",
"hoist-non-react-statics": "^3.3.0",
"html-webpack-plugin": "^3.2.0",
"ismobilejs": "^0.5.2",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-flexbox": "^1.0.3",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"progress-bar-webpack-plugin": "^1.12.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-hot-loader": "^4.11.1",
"react-router-dom": "^5.0.1",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^2.0.1",
"style-loader": "^0.23.1",
"styled-components": "^4.3.0",
"styled-tools": "^1.7.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"
}
}