-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.05 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.05 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
{
"name": "pedalnotes",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"check": "tsc",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"deploy": "npm run build && npm run upload-s3",
"upload-s3": "node scripts/upload-s3.js",
"upload-s3-no-cache": "node scripts/upload-s3.js --no-cache",
"invalidate-cloudfront": "node scripts/invalidate-cloudfront.js",
"deploy-with-cloudfront": "npm run deploy && npm run invalidate-cloudfront",
"setup-s3-bucket": "node scripts/setup-s3-bucket.js",
"configure-s3-website": "node scripts/configure-s3-website.js"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-slider": "^1.2.4",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-toast": "^1.2.7",
"@radix-ui/react-tooltip": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"lucide-react": "^0.453.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.55.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"wouter": "^3.9.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.1.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "20.16.11",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.20",
"jsdom": "^26.1.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.17",
"typescript": "5.6.3",
"vite": "^5.4.19",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^3.2.4"
}
}