-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.35 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
{
"name": "voicefu",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"divider": "=============================basic======================================",
"setup": "npx -y husky install && rm -rf node_modules && npm i",
"build": "vite build",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"pretty": "pretty-quick --stage --brach main",
"tsc": "tsc",
"divider1": "============================dev========================================",
"dev": "vite",
"preview": "npm run build && vite preview"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json,yml}": [
"eslint --fix",
"pretty-quick --stage --brach main"
]
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@mantine/core": "^6.0.2",
"@mantine/hooks": "^6.0.2",
"@mantine/notifications": "^6.0.2",
"@tabler/icons-react": "^2.10.0",
"@ts-rest/core": "^3.18.1",
"@ts-rest/react-query": "^3.18.1",
"buffer": "^6.0.3",
"firebase": "^9.17.2",
"firelordjs": "^2.6.0-beta.1",
"localforage": "^1.10.0",
"react": "^18.2.0",
"react-audio-voice-recorder": "^1.0.4",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.0",
"react-social-login-buttons": "^3.6.1",
"zod": "^3.21.4",
"zustand": "^4.3.6"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^2.0.7",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-yml": "^1.4.0",
"jsdoc": "^4.0.2",
"lint-staged": "^13.2.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"typescript": "^5.0.2",
"vite": "^4.1.0",
"vite-plugin-svgr": "^2.4.0"
}
}