-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.92 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
{
"name": "teddy",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"prepare": "husky install",
"lint": "eslint src",
"test": "vitest",
"test:ci": "vitest --run",
"format:write": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\""
},
"dependencies": {
"@hookform/error-message": "2.0.1",
"@hookform/resolvers": "3.1.0",
"@svgr/webpack": "7.0.0",
"@tauri-apps/api": "1.3.0",
"emoji-picker-react": "4.5.16",
"gpt-tokenizer": "1.0.4",
"lodash": "4.17.21",
"marked": "5.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.9",
"react-hot-toast": "2.4.1",
"react-router-dom": "6.11.1",
"tailwind-merge": "1.12.0",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store",
"typescript": "5.0.4",
"vite-plugin-svgr": "3.2.0",
"zod": "3.21.4",
"zustand": "4.4.6"
},
"devDependencies": {
"@tauri-apps/cli": "^1.3.0",
"@types/lodash": "4.14.194",
"@types/marked": "4.3.0",
"@types/node": "^18.7.10",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "10.4.14",
"eslint": "8.39.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-unused-imports": "3.0.0",
"husky": "^8.0.0",
"lint-staged": "13.2.2",
"postcss": "8.4.23",
"prettier": "2.8.8",
"tailwindcss": "3.3.2",
"vite": "^4.2.1",
"vitest": "0.34.6"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write \"**/*.{ts,tsx,md}\""
],
"*.json": [
"prettier --write"
]
}
}