-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 6.72 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "react-app",
"type": "module",
"version": "0.0.1",
"packageManager": "[email protected]",
"engines": {
"node": "20.x"
},
"description": "Bulletproof React 18 SPA Template",
"author": "Tri Rizeki Rifandani",
"license": "MIT",
"scripts": {
"prepare": "husky",
"gen:pwa-assets": "pwa-assets-generator --preset minimal-2023 public/favicon.svg",
"clean": "find . \\( -name node_modules -type d -o -name dev-dist -type d -o -name dist -type d -o -name html -type d -o -name playwright -type d -o -name playwright-report -type d -o -name playwright-test-results -type d -name pnpm-lock.json -type f \\) | xargs rm -rf && pnpm install",
"clean:biome": "biome clean",
"check": "biome check ./src",
"check:fix": "biome check --write ./src",
"ci": "biome ci ./src",
"typecheck": "tsc --noEmit",
"test:install": "playwright install --with-deps chromium",
"test": "DEBUG=pw:api playwright test",
"test:ui": "playwright test --ui",
"test:report": "playwright show-report",
"regression": "run-p check typecheck test",
"dev": "rimraf dev-dist && DEBUG=vite-plugin-pwa SW_DEV=true vite --force",
"dev:claims": "rimraf dev-dist && DEBUG=vite-plugin-pwa SW_DEV=true CLAIMS=true SW=true vite --force",
"dev:destroy": "rimraf dev-dist && DEBUG=vite-plugin-pwa SW_DEV=true SW_DESTROY=true vite --force",
"dev:claims-destroy": "rimraf dev-dist && DEBUG=vite-plugin-pwa SW_DEV=true CLAIMS=true SW_DESTROY=true SW=true vite --force",
"build-only": "vite build",
"build-only:staging": "vite build --mode staging",
"build": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true pnpm build-only",
"build:staging": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true pnpm build-only:staging",
"build:reloadsw": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true RELOAD_SW=true pnpm build-only",
"build:claims": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true CLAIMS=true pnpm build-only",
"build:reloadsw-claims": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true RELOAD_SW=true CLAIMS=true pnpm build-only",
"build:sw": "rimraf dist && DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true SW=true pnpm build-only",
"build:sw-reloadsw": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true SW=true RELOAD_SW=true pnpm build-only",
"build:sw-claims": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true SW=true CLAIMS=true pnpm build-only",
"build:sw-reloadsw-claims": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true SW=true RELOAD_SW=true CLAIMS=true pnpm build-only",
"build:destroy": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true SW_DESTROY=true pnpm build-only",
"build:reloadsw-destroy": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true RELOAD_SW=true SW_DESTROY=true pnpm build-only",
"build:claims-destroy": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true CLAIMS=true SW_DESTROY=true pnpm build-only",
"build:reloadsw-claims-destroy": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true RELOAD_SW=true CLAIMS=true SW_DESTROY=true pnpm build-only",
"build:sw-destroy": "rimraf dist && DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true SW=true SW_DESTROY=true pnpm build-only",
"build:sw-reloadsw-destroy": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true SW=true RELOAD_SW=true SW_DESTROY=true pnpm build-only",
"build:sw-claims-destroy": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true SW=true CLAIMS=true SW_DESTROY=true pnpm build-only",
"build:sw-reloadsw-claims-destroy": "DEBUG=vite-plugin-pwa BASE_URL=/ SOURCE_MAP=true SW=true RELOAD_SW=true CLAIMS=true SW_DESTROY=true pnpm build-only",
"serve": "serve dist",
"start": "run-s build serve",
"start:staging": "run-s build:staging serve",
"start:reloadsw": "run-s pnpm build:reloadsw serve",
"start:claims": "run-s pnpm build:claims serve",
"start:reloadsw-claims": "run-s pnpm build:reloadsw-claims serve",
"start:sw": "run-s pnpm build:sw serve",
"start:sw-reloadsw": "run-s pnpm build:sw-reloadsw serve",
"start:sw-claims": "run-s pnpm build:sw-claims serve",
"start:sw-reloadsw-claims": "run-s pnpm build:sw-reloadsw-claims serve",
"start:destroy": "run-s pnpm build:destroy serve",
"start:reloadsw-destroy": "run-s pnpm build:reloadsw-destroy serve",
"start:claims-destroy": "run-s pnpm build:claims-destroy serve",
"start:reloadsw-claims-destroy": "run-s pnpm build:reloadsw-claims-destroy serve",
"start:sw-destroy": "run-s pnpm build:sw-destroy serve",
"start:sw-reloadsw-destroy": "run-s pnpm build:sw-reloadsw-destroy serve",
"start:sw-claims-destroy": "run-s pnpm build:sw-claims-destroy serve",
"start:sw-reloadsw-claims-destroy": "run-s pnpm build:sw-reloadsw-claims-destroy serve",
"preview": "vite preview",
"build-and-preview": "run-s build preview",
"release": "bumpp"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.2",
"@hookform/resolvers": "^3.9.0",
"@internationalized/date": "^3.5.5",
"@radix-ui/react-avatar": "^1.1.0",
"@rifandani/nxact-yutiriti": "^1.2.2",
"@tanstack/react-query": "^5.56.2",
"@tanstack/react-query-devtools": "^5.58.0",
"class-variance-authority": "^0.7.0",
"ky": "^1.7.2",
"react": "^18.3.1",
"react-aria": "^3.34.3",
"react-aria-components": "1.3.3",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-router-dom": "^6.26.2",
"react-stately": "^3.32.2",
"sonner": "^1.5.0",
"ts-pattern": "^5.4.0",
"type-fest": "^4.26.1",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@faker-js/faker": "^9.0.3",
"@hookform/devtools": "^4.3.1",
"@iconify/react": "^5.0.2",
"@playwright/test": "^1.47.2",
"@rollup/plugin-replace": "^6.0.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^20.14.10",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@vite-pwa/assets-generator": "^0.2.6",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"bumpp": "^9.5.2",
"dotenv": "^16.4.5",
"https-localhost": "^4.7.1",
"husky": "^9.1.6",
"npm-run-all2": "^6.2.3",
"pnpm": "^9.11.0",
"postcss": "^8.4.47",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.13",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "1.1.5",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-pwa": "^0.20.5",
"vite-tsconfig-paths": "^5.0.1",
"workbox-build": "^7.1.1",
"workbox-core": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-window": "^7.1.0"
}
}