-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.37 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
{
"name": "twilio-mixologist",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "env NODE_OPTIONS=--require=dotenv/config DOTENV_CONFIG_PATH=./.env.local DOTENV_CONFIG_OVERRIDE=true next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "DOTENV_CONFIG_OVERRIDE=true DOTENV_CONFIG_PATH=./.env.local vitest",
"test:e2e": "playwright test --retries=2",
"update-config": "tsx -r dotenv/config src/scripts/updateConfig dotenv_config_path=.env.local ",
"download": "tsx -r dotenv/config src/scripts/download dotenv_config_path=.env.local ",
"create-twilio-res": "tsx -r dotenv/config src/scripts/createTwilioRes dotenv_config_path=.env.local ",
"check-for-errors": "tsx -r dotenv/config src/scripts/checkForErrors dotenv_config_path=.env.local ",
"clear-attendees": "tsx -r dotenv/config src/scripts/clearAttendeeMap dotenv_config_path=.env.local",
"clear-orders": "tsx -r dotenv/config src/scripts/clearOrdersForEvent dotenv_config_path=.env.local",
"broadcast": "tsx -r dotenv/config src/scripts/broadcastMessage dotenv_config_path=.env.local",
"prettier": "prettier --write ."
},
"dependencies": {
"@nivo/bar": "^0.99.0",
"@nivo/core": "^0.99.0",
"@nivo/funnel": "^0.99.0",
"@nivo/line": "^0.99.0",
"@nivo/pie": "^0.99.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/themes": "^3.3.0",
"axios": "^1.13.6",
"bufferutil": "^4.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookies-next": "^6.1.1",
"countries-list": "^3.3.0",
"date-fns": "^4.1.0",
"dotenv": "^17.3.1",
"google-libphonenumber": "^3.2.44",
"jimp": "^1.6.1",
"jsonwebtoken": "^9.0.3",
"jsqr": "^1.4.0",
"lucide-react": "^1.0.1",
"next": "16.2.1",
"openai": "^6.45.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.4",
"react-qr-code": "^2.0.18",
"react-select": "^5.10.2",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"twilio": "^5.13.1",
"twilio-agent-connect": "^1.0.3",
"twilio-sync": "^4.0.0",
"utf-8-validate": "^6.0.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/react": "^16.3.2",
"@types/google-libphonenumber": "^7.4.30",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"eslint": "^10.1.0",
"eslint-config-next": "^16.2.1",
"jsdom": "^29.0.1",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.2",
"throttled-queue": "^3.0.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite-tsconfig-paths": "6.1.1",
"vitest": "^4.1.1"
},
"packageManager": "pnpm@10.24.0"
}