-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.9 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
{
"name": "react-typescript-template",
"version": "1.0.0",
"description": "react+typescript+webpack",
"main": "index.tsx",
"engines": {
"npm": ">=5",
"node": ">=8.15.1"
},
"author": "Richard Hsueh",
"scripts": {
"dev": "webpack-dev-server --config webpack.config.js --progress --inline --hot",
"prebuild": "rimraf dist",
"build": "webpack --config webpack.prod.js --hide-modules --progress --inline",
"start": "serve dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "ISC",
"dependencies": {
"axios": "^0.21.0",
"formik": "^2.1.5",
"i18next": "^19.6.2",
"immer": "^8.0.1",
"lodash": "^4.17.19",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-i18next": "^11.7.0",
"react-redux": "^7.2.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-table": "^7.3.2",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@babel/runtime-corejs3": "7.12.5",
"@pmmmwh/react-refresh-webpack-plugin": "0.4.3",
"@types/node": "14.14.26",
"@types/react": "16.14.3",
"@types/react-dom": "17.0.0",
"@types/react-router": "5.1.11",
"@types/react-router-dom": "5.1.7",
"@types/styled-components": "5.1.7",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"babel-plugin-react-require": "3.1.3",
"babel-plugin-styled-components": "1.12.0",
"circular-dependency-plugin": "5.2.2",
"clean-webpack-plugin": "3.0.0",
"compression-webpack-plugin": "7.1.2",
"cross-env": "7.0.3",
"css-loader": "5.0.2",
"eslint": "7.18.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "7.2.0",
"eslint-import-resolver-webpack": "0.13.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.0.8",
"fork-ts-checker-webpack-plugin": "6.1.0",
"html-loader": "1.3.2",
"html-webpack-plugin": "4.3.0",
"node-sass": "5.0.0",
"path": "0.12.7",
"prettier": "2.0.5",
"react-app-polyfill": "2.0.0",
"react-refresh": "0.8.3",
"sass-loader": "9.0.3",
"scss-loader": "0.0.1",
"serve": "11.3.2",
"style-loader": "1.2.1",
"terser-webpack-plugin": "3.1.0",
"ts-loader": "8.0.12",
"typescript": "4.1.3",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
}
}