forked from bryanlundberg/NexusTimer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.85 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
89
90
91
92
93
94
95
{
"name": "nexustimer",
"version": "1.0.0",
"description": "Nexus Timer is a powerful unopinionated, minimalist training tool for SpeedCubing.",
"license": "GPL-3.0-only",
"author": "Bryan Lundberg",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.1.3",
"@mierak/react-virtualized-grid": "^0.0.5-ALPHA",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@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-toggle": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@react-email/components": "^0.0.27",
"@types/node": "20.6.0",
"@types/papaparse": "^5.3.14",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"country-flag-icons": "^1.5.11",
"cube-solver": "^2.4.1",
"cubing": "^0.44.1",
"date-fns": "^2.30.0",
"eslint": "8.49.0",
"eslint-config-next": "^14.2.11",
"fast-sort": "^3.4.0",
"filter-data": "^0.6.1",
"framer-motion": "^10.17.4",
"idb-wrapper": "^1.7.2",
"lightweight-charts": "^4.1.4",
"lucide-react": "^0.439.0",
"luxon": "^3.4.4",
"mongoose": "^8.7.3",
"next": "^15.0.2",
"next-auth": "^5.0.0-beta.25",
"next-intl": "^3.19.1",
"next-themes": "^0.3.0",
"papaparse": "^5.4.1",
"postcss": "8.4.31",
"pretty-ms": "^8.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dom-confetti": "^0.2.0",
"react-resizable-panels": "^2.1.2",
"recharts": "^2.8.0",
"resend": "^4.0.1-alpha.0",
"scrambow": "^1.8.1",
"sharp": "0.32.6",
"sonner": "^1.5.0",
"stackmat": "^1.1.1",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"ts-deepmerge": "^7.0.0",
"typescript": "5.2.2",
"uuid": "9.0.1",
"vaul": "^0.9.2",
"zustand": "4.4.1"
},
"devDependencies": {
"@playwright/test": "^1.43.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/js-cookie": "^3.0.6",
"@types/luxon": "^3.4.2",
"@types/uuid": "9.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
}
}