-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
88 lines (88 loc) · 3.1 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "twilio-mixologist",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "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.88.0",
"@nivo/core": "^0.88.0",
"@nivo/funnel": "^0.88.0",
"@nivo/line": "^0.88.0",
"@nivo/pie": "^0.88.0",
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-radio-group": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-toggle": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.6",
"@radix-ui/themes": "^3.1.6",
"axios": "^1.7.9",
"bufferutil": "^4.0.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookies-next": "^5.1.0",
"countries-list": "^3.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"google-libphonenumber": "^3.2.40",
"lucide-react": "^0.471.1",
"next": "15.1.4",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-day-picker": "^9.5.0",
"react-dom": "^19.0.0",
"react-qr-code": "^2.0.15",
"react-select": "^5.9.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"twilio": "^5.4.2",
"twilio-sync": "^3.3.5",
"utf-8-validate": "^6.0.5"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@testing-library/react": "^16.1.0",
"@types/google-libphonenumber": "^7.4.30",
"@types/node": "^22.10.6",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-next": "15.1.4",
"jsdom": "^26.0.0",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"throttled-queue": "^2.1.4",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]"
}