-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.44 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
105
106
107
{
"name": "react-starter-kit",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --mode development --env NODE_ENV=development --config config/webpack.base.config.js --open --hot --history-api-fallback ",
"clean": "rm -rf dist",
"build": "npm run clean && webpack --mode production --env NODE_ENV=production --config config/webpack.prod.config.js --progress",
"server": "node server",
"dev": "concurrently \"npm run server\" \"npm run start\"",
"lint": "eslint src --ext .js,.jsx --fix"
},
"dependencies": {
"axios": "^0.26.0",
"babel-eslint": "^10.1.0",
"body-parser": "^1.19.2",
"compression-webpack-plugin": "^9.2.0",
"connected-react-router": "^6.9.2",
"css-minimizer-webpack-plugin": "^3.4.1",
"date-fns": "^2.28.0",
"dotenv": "^14.3.2",
"express": "^4.17.3",
"file-loader": "^6.2.0",
"file-saver": "^2.0.5",
"history": "^4.10.1",
"html-webpack-plugin": "^5.5.0",
"html2canvas": "^1.4.1",
"immer": "^9.0.12",
"mini-css-extract-plugin": "^2.6.0",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^8.0.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.6",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"react-slick": "^0.29.0",
"react-toastify": "^8.2.0",
"redux": "^4.1.2",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"reduxsauce": "^1.2.1",
"reselect": "^4.1.5",
"resize-observer-polyfill": "^1.5.1",
"route-parser": "^0.0.5",
"sass-resources-loader": "^2.2.5",
"terser-webpack-plugin": "^5.3.1",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-proposal-throw-expressions": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@hot-loader/react-dom": "^17.0.2",
"@svgr/webpack": "^6.2.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.2.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"concurrently": "^6.5.1",
"core-js": "^3.21.1",
"css-loader": "^6.7.1",
"esbuild-loader": "^2.19.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.1.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"postcss": "^8.4.21",
"prettier": "^2.6.0",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.4",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix"
]
}
}