forked from Charca/astro-records
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.38 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
{
"name": "my-podcaster",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently --kill-others 'reflect dev --silence-startup-message' 'VITE_REFLECT_URL=http://127.0.0.1:8080/ VITE_SERVER_URL=http://127.0.0.1:8787 vite' 'wrangler dev server/index.ts'",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write .",
"preview": "wrangler pages dev ./dist",
"deploy:server": "reflect publish --app=podcaster && wrangler deploy --minify server/index.ts",
"usage": "reflect usage --app=podcaster",
"prepare": "husky"
},
"dependencies": {
"@nanostores/react": "^0.7.2",
"@rocicorp/rails": "^0.10.0",
"@rocicorp/reflect": "^0.39.202402230127+b70f6b",
"@tanstack/query-sync-storage-persister": "^5.54.1",
"@tanstack/react-query": "^5.55.0",
"@tanstack/react-query-persist-client": "^5.55.0",
"hono": "^4.3.4",
"nanoid": "^5.0.7",
"nanostores": "^0.10.3",
"p-queue": "^8.0.1",
"p-retry": "^6.2.0",
"p-throttle": "^6.1.0",
"partykit": "^0.0.107",
"partysocket": "*",
"react": "^18.3.1",
"react-aria-components": "^1.2.0",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"replicache": "^14.2.2",
"replicache-react": "^5.0.1",
"ts-invariant": "^0.10.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240502.0",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/eslint-plugin-query": "^5.53.0",
"@types/node": "^20.12.11",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nanoid": "^5.0.7",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"tailwindcss-react-aria-components": "^1.1.2",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2",
"wrangler": "^3.55.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,cjs,mjs,css,md,json,astro}": "prettier --write"
}
}