-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.28 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.28 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "evolution-manager",
"private": false,
"version": "2.0.0",
"type": "module",
"description": "Modern web interface for Evolution API management",
"keywords": [
"whatsapp",
"api",
"chatbot",
"evolution-api",
"react",
"typescript",
"management",
"dashboard"
],
"homepage": "https://github.com/EvolutionAPI/evolution-manager-v2#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/EvolutionAPI/evolution-manager-v2.git"
},
"bugs": {
"url": "https://github.com/EvolutionAPI/evolution-manager-v2/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Evolution API Team",
"email": "contato@evolution-api.com",
"url": "https://evolution-api.com"
},
"contributors": [
{
"name": "Evolution API Team",
"email": "contato@evolution-api.com"
}
],
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint ./src/**/*.{ts,tsx} --ext .ts,.tsx --fix",
"lint:check": "eslint ./src/**/*.{ts,tsx} --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"preview": "vite preview",
"test": "echo \"No tests specified\" && exit 0",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\""
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.52.1",
"@tanstack/react-table": "^8.20.1",
"axios": "^1.7.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"i18next": "^23.14.0",
"lucide-react": "^0.408.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"react-i18next": "^15.0.1",
"react-qr-code": "^2.0.15",
"react-resizable-panels": "^2.0.21",
"react-router-dom": "^6.25.1",
"react-tag-input": "^6.10.3",
"react-toastify": "^10.0.5",
"recharts": "^2.12.7",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@herowcode/eslint-config": "^1.2.2",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"postcss": "^8.4.39",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.6",
"typescript": "^5.2.2",
"vite": "^7.1.6"
}
}