-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.11 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
100
101
102
103
104
{
"name": "react-babel-boulerplate",
"version": "0.0.1",
"description": "React-Babel boulerplate",
"repository": {
"type": "git",
"url": "[email protected]:frontend/boulerplate-react-babel.git"
},
"author": "CodeInside <[email protected]>",
"license": "UNLICENSED",
"private": true,
"keywords": [
"webpack",
"babel",
"eslint",
"react",
"redux",
"stylelint"
],
"engines": {
"node": ">= 8.11.1",
"npm": ">= 6.4.1"
},
"browserslist": "defaults",
"scripts": {
"start": "webpack-dev-server --inline --hot",
"clean": "npm run clean-dist; npm run clean-modules; exit 0",
"clean-dist": "shx rm -rf dist; exit 0",
"clean-modules": "shx rm -rf node_modules; shx rm package-lock.json; exit 0",
"build": "npm run clean-dist; webpack",
"build-production": "npm run clean-dist; npm i && NODE_ENV=production webpack -p",
"eslint": "eslint ./src/**/*.{js,jsx}",
"eslint:fix": "eslint --fix ./src/**/*.{js,jsx}",
"eslint:config": "eslint --print-config ./{src/**/*.{js,jsx}"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"autoprefixer": "^7.2.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"css-loader": "^0.28.11",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"extract-loader": "^3.1.0",
"file-loader": "^1.1.11",
"node-sass": "^4.11.0",
"postcss-loader": "^2.1.6",
"sass-loader": "^6.0.7",
"shx": "^0.3.2",
"style-loader": "^0.20.3",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-webpack-plugin": "^0.10.5",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^0.6.2",
"webpack": "^4.28.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.2.1",
"webpack-notifier": "^1.7.0"
},
"dependencies": {
"@material-ui/core": "^3.4.0",
"@material-ui/icons": "^3.0.1",
"axios": "^0.18.0",
"connected-react-router": "^5.0.1",
"file-saver": "^1.3.8",
"final-form": "^4.11.0",
"history": "^4.7.2",
"html-loader": "^0.5.5",
"is_js": "^0.9.0",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"prop-types": "^15.6.2",
"qs": "^6.6.0",
"ramda": "^0.26.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-final-form": "^4.0.2",
"react-loadable": "^5.3.1",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-prop-types": "^1.0.4",
"react-transition-group": "^2.5.1",
"recompose": "^0.30.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.7",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"typeface-roboto": "0.0.54",
"url": "^0.11.0"
}
}