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
| {
"name": "vite-react-teamplate",
"version": "0.0.1",
"scripts": {
"dev": "cross-env NODE_ENV=local vite --host",
"dev:stg": "cross NODE_ENV=stg vite",
"build": "vite build",
"build:stg": "cross-env vite build --mode test",
"build:prod": "cross-env vite build --mode production",
"serve": "vite preview",
"lint": "eslint --ext .jsx,.js,.ts,.tsx ."
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-i18next": "^11.11.4",
"i18next": "^20.4.0",
"i18next-browser-languagedetector": "^6.1.2",
"react-loading": "^2.0.3",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"redaxios": "^0.4.1",
"qs": "^6.10.1",
"@reduxjs/toolkit": "^1.6.1",
"redux": "^4.1.1",
"react-redux": "^7.2.4",
"redux-thunk": "^2.3.0",
"tailwindcss": "^2.2.9",
"variables": "^1.0.1"
},
"devDependencies": {
"vite": "^2.5.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"typescript": "^4.3.5",
"cross-env": "^7.0.3",
"@types/node": "^16.7.12",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"@types/react-router-dom": "^5.1.8",
"redux-devtools-extension": "^2.13.9",
"tailwindcss-classnames": "^2.2.3",
"autoprefixer": "^10.3.3",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react-hooks": "^4.2.0"
}
}
|