-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.77 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.77 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"author": "aldenn",
"license": "ISC",
"name": "react-webpack-typescript-starter",
"version": "0.0.5",
"description": "The React-Typescript Boilerplate with Webpack config manual",
"main": "index.js",
"scripts": {
"postinstall": "rm -rf .husky && husky install && npx husky add .husky/pre-commit \"npx lint-staged\"",
"test": "jest --config src/jest.config.js --updateSnapshot",
"dev": "webpack serve --config webpack/webpack.dev.js --hot",
"build": "webpack --config webpack/webpack.prod.js",
"start": "node server.js",
"start-pm2": "pm2 start ./pm2/prod.json",
"lint": "eslint .",
"format": "prettier --write \"**/*.+(js|jsx|ts|json|css|md)\""
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": "eslint --max-warnings 0 --fix",
"*.+(js|jsx|ts|tsx|json|css|md)": "prettier --write"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"axios": "^0.21.1",
"connected-react-router": "^6.9.1",
"i18next": "^20.4.0",
"lodash": "^4.17.21",
"pm2": "^5.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet-async": "^1.0.9",
"react-i18next": "^11.8.10",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-toastify": "^7.0.3",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@svgr/webpack": "^6.2.1",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^12.0.0",
"@types/enzyme": "^3.10.9",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/history": "^4.7.9",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.18",
"@types/react-router-dom": "^5.1.8",
"@types/react-test-renderer": "^17.0.1",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.29.3",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.21.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"husky": "^7.0.0",
"image-minimizer-webpack-plugin": "^2.2.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^9.0.0",
"import-glob": "^1.5.0",
"jest": "^27.0.6",
"jest-watch-typeahead": "^0.6.2",
"lint-staged": "^11.1.2",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "1.3.9",
"node-sass": "^6.0.1",
"postcss": "^8.2.8",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"react-dev-utils": "^11.0.4",
"react-test-renderer": "^17.0.2",
"resolve-url-loader": "^4.0.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"svg-url-loader": "^7.1.1",
"terser-webpack-plugin": "^4.2.3",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"webpack": "^5.24.4",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.0.0",
"webpack-manifest-plugin": "^4.0.2",
"webpack-nano": "^1.1.1"
}
}