-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.46 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.46 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
{
"name": "@create-react-spa-cloudflare/client",
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "pnpm run build:server-types && tsc -b && vite build",
"build:server-types": "tsc -p ../server/tsconfig.shared.json --declaration --emitDeclarationOnly --outFile ./src/server-types.d.ts",
"build:test": "tsc -b && E2E=true vite build",
"deploy:stage": "pnpm wrangler pages deploy ./dist --project-name todo-rename --branch \"stage\" --commit-hash \"$GITHUB_SHA\" --commit-message \"stage deployment\"",
"deploy:prod": "pnpm wrangler pages deploy ./dist --project-name todo-rename",
"dev": "vite --host 0.0.0.0",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"preview": "vite preview",
"typecheck": "pnpm exec tsc --build"
},
"dependencies": {
"@sentry/react": "^9.16.1",
"@sentry/vite-plugin": "^3.4.0",
"@tanstack/react-query": "^5.75.5",
"classnames": "^2.5.1",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.5",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"@vitejs/plugin-react-swc": "^3.9.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"jsdom": "^26.1.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.5",
"vite": "^6.3.5",
"vitest": "^3.1.3"
}
}