-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.08 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
{
"name": "keybox-page",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "dotenv -e .env.development vite",
"build-dev": "dotenv -e .env.development vite build",
"build-prod": "dotenv -e .env.production vite build",
"preview-dev": "dotenv -e .env.development vite preview",
"preview-prod": "dotenv -e .env.production vite preview",
"deploy-dev": "(dotenv -e .env.development vite build) & (firebase use -P development) & firebase deploy -P development",
"deploy-prod": "(dotenv -e .env.production vite build) & (firebase use -P production) & firebase deploy -P production",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.3",
"@hookform/resolvers": "^3.1.1",
"@mui/icons-material": "^5.13.7",
"@mui/lab": "^5.0.0-alpha.140",
"@mui/material": "^5.13.7",
"dayjs": "^1.11.9",
"dotenv-cli": "^7.2.1",
"firebase": "^10.0.0",
"localforage": "^1.10.0",
"match-sorter": "^6.3.1",
"poppins": "^0.1.1",
"prettier-plugin-sort-imports": "^1.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-firebase-hooks": "^5.1.1",
"react-hook-form": "^7.45.1",
"react-router-dom": "^6.14.1",
"react-toastify": "^9.1.3",
"sort-by": "^1.2.0",
"vite-plugin-favicons-inject": "^2.2.0",
"yup": "^1.2.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0",
"dotenv": "^16.3.1",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"vite": "^4.3.9"
},
"prettier": {
"importOrder": [
"^react(.*)",
"@mui/(.*)",
"components/*",
"<THIRD_PARTY_MODULES>",
"@/(.*)",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
}
}