-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.84 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.84 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
94
{
"name": "subscribers",
"description": "Subscribers",
"private": false,
"version": "1.0.0",
"type": "module",
"main": "src/main.tsx",
"license": "MIT",
"scripts": {
"dev": "vite --host",
"start": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview --host",
"test": "vitest",
"treemap": "vite-bundle-visualizer --open --template=treemap --output='./dist/treemap.html'",
"prune": "rm -rf node_modules yarn.lock package-lock.json pnpm-lock.yaml bun.lockb dist coverage build dev-dist",
"test:watch": "vitest --watch",
"test:coverage": "vitest --watch --coverage",
"test:ui": "vitest --watch --coverage --ui",
"lint": "eslint src --no-inline-config --report-unused-disable-directives --max-warnings 0",
"lint:fix": "pnpm run lint -- --fix",
"lint:css": "stylelint **/*.css --aei --color",
"prettier": "prettier src --check",
"prettier:fix": "pnpm run prettier -- --write",
"format": "pnpm run prettier && pnpm run lint",
"format:fix": "pnpm run prettier:fix && pnpm run lint:fix",
"typecheck": "tsc",
"lint-staged": "tsc & lint-staged",
"prebuild": "pnpm run lint-staged",
"prepare": "husky",
"commit": "commit"
},
"dependencies": {
"canvas-confetti": "^1.9.3",
"lucide-react": "^0.525.0",
"motion": "^12.23.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sonner": "^2.0.6",
"zod": "^3.25.75",
"zustand": "^5.0.6"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/prompt-cli": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@tailwindcss/vite": "^4.1.11",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/canvas-confetti": "^1.9.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react-swc": "^3.10.2",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"c8": "^10.1.3",
"daisyui": "^5.0.46",
"eslint": "^9.30.1",
"happy-dom": "^17.6.3",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"msw": "^2.10.3",
"npm-check-updates": "^17.1.18",
"prettier": "^3.6.2",
"stylelint": "^16.21.1",
"stylelint-config-standard": "^37.x",
"tailwindcss": "4",
"tw-animate-css": "^1.3.5",
"typescript": "^5.8.3",
"vite": "^7.0.2",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-compression2": "^1.4.0",
"vite-plugin-qrcode": "^0.3.0",
"vitest": "^3.2.4",
"web-vitals": "^4.2.4"
},
"msw": {
"workerDirectory": "public"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}