-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
86 lines (86 loc) · 2.84 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
{
"name": "npm",
"version": "1.0.0",
"description": "Quick start for React application using Typescript, Eslint and Webpack",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=local webpack-dev-server --config webpack/common.webpack",
"start": "cross-env serve -s ./dist/public",
"build": "cross-env NODE_ENV=production webpack --config webpack/prod.webpack --progress",
"lint": "eslint src/**/*.{ts,tsx}",
"lint-fix": "eslint **/*/*.tsx --fix"
},
"keywords": [
"react",
"typescript",
"eslint",
"webpack",
"babel"
],
"author": "Vladyslav Tereshyn",
"license": "ISC",
"dependencies": {
"core-js": "^3.6.5",
"dotenv": "^8.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.20"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@hot-loader/react-dom": "^16.13.0",
"@types/react": "^16.9.34",
"@types/react-css-modules": "^4.6.2",
"@types/react-dom": "^16.9.7",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.5",
"@types/react-text-mask": "^5.4.6",
"@types/redux-logger": "^3.0.7",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-loader": "^8.1.0",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-emotion": "^10.0.33",
"babel-plugin-react-css-modules": "^5.2.6",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"html-webpack-inline-source-plugin": "^1.0.0-beta.2",
"html-webpack-plugin": "^4.2.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.0",
"postcss-load-config": "^2.1.0",
"postcss-loader": "^3.0.0",
"postcss-plugin": "^1.0.0",
"postcss-scss": "^2.0.0",
"prettier": "^2.0.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
}
}