-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.33 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
108
109
110
{
"name": "react-mobx-ts-starter",
"version": "1.0.0",
"private": true,
"dependencies": {
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.9.1",
"classnames": "^2.3.2",
"currency-symbol-map": "^5.1.0",
"currency.js": "^2.0.4",
"emittery": "^0.12.1",
"framer-motion": "^7.6.2",
"i18next": "^22.5.1",
"i18next-browser-languagedetector": "^7.0.2",
"i18next-http-backend": "^2.2.1",
"intersection-observer": "^0.12.2",
"iso-639-1": "^2.1.15",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"mobx": "^6.6.2",
"mobx-react-lite": "^3.4.0",
"moment": "^2.29.4",
"postcss": "^8.4.14",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.7.2",
"query-string": "^7.1.1",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.1",
"react-player": "^2.10.1",
"react-router-dom": "^6.4.0",
"react-scripts": "^5.0.1",
"react-select": "^5.4.0",
"react-toastify": "^9.0.7",
"react-transition-group": "^4.4.5",
"react-use": "^17.4.0",
"sass-embedded": "^1.80.6",
"uuid": "^9.0.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "webpack-dev-server --mode development --hot --open",
"start-no-open": "webpack-dev-server --mode development --hot --no-open",
"prod": "webpack-dev-server --mode production --hot --open",
"build": "webpack --env production",
"test": "jest -u"
},
"browserslist": {
"production": [
"> 0.2% and not ie 11"
],
"development": [
"> 0.2% and not ie 11"
]
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.4",
"@types/js-cookie": "^3.0.2",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.6",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"autoprefixer": "^10.4.7",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.5",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^1.7.0",
"browserslist": "^4.21.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^5.2.1",
"eslint": "^8.20.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"expose-loader": "^4.0.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.0.6",
"jest-fetch-mock": "^3.0.3",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^2.6.1",
"moment-locales-webpack-plugin": "^1.2.0",
"postcss-loader": "^4.2.1",
"sass": "^1.80.6",
"sass-loader": "^16.0.3",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"ts-jest": "^27.0.4",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}