-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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
{
"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": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@heroicons/react": "^2.0.13",
"@reduxjs/toolkit": "^1.9.1",
"i18next": "^22.4.9",
"i18next-browser-languagedetector": "^7.0.1",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.4",
"react-loading": "^2.0.3",
"react-redux": "^8.0.5",
"react-router-dom": "^6.6.1",
"redaxios": "^0.5.1",
"redux": "^4.2.0",
"redux-thunk": "^2.4.2",
"variables": "^1.0.1"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.21",
"prettier": "^2.8.2",
"redux-devtools-extension": "^2.13.9",
"tailwindcss": "^3.2.4",
"tailwindcss-classnames": "^3.0.7",
"typescript": "^4.9.4",
"vite": "^4.0.4"
}
}