-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
86 lines (86 loc) · 2.96 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
{
"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",
"prettier": "prettier --write ."
},
"dependencies": {
"@nivo/bar": "^0.87.0",
"@nivo/core": "^0.87.0",
"@nivo/funnel": "^0.87.0",
"@nivo/line": "^0.87.0",
"@nivo/pie": "^0.87.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-icons": "^1.3.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@radix-ui/themes": "^3.1.4",
"axios": "^1.7.7",
"bufferutil": "^4.0.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cookies-next": "^4.3.0",
"countries-list": "^3.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"google-libphonenumber": "^3.2.38",
"lucide-react": "^0.454.0",
"next": "15.0.2",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-day-picker": "^9.3.0",
"react-dom": "^18.3.1",
"react-qr-code": "^2.0.15",
"react-select": "^5.8.2",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"twilio": "^5.3.5",
"twilio-sync": "^3.3.5",
"utf-8-validate": "^6.0.5"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"@testing-library/react": "^16.0.1",
"@types/google-libphonenumber": "^7.4.30",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-config-next": "15.0.2",
"jsdom": "^25.0.1",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"throttled-queue": "^2.1.4",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "5.1.0",
"vitest": "^2.1.4"
}
}