forked from fogbender/b2b-saaskit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.41 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
{
"name": "@fogbender/b2bsaaskit",
"private": true,
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"full:check": "yarn fix && yarn ci:check && doppler run --config prd yarn build",
"ci:check": "astro check && tsc --noEmit",
"preview": "astro preview",
"lint": "eslint . --max-warnings 0 --report-unused-disable-directives",
"fmt": "prettier --write --ignore-unknown .",
"fix": "yarn lint:fix; yarn fmt",
"lint:fix": "yarn lint --fix",
"migrate": "tsx src/db/scripts/migrate",
"astro": "astro"
},
"dependencies": {
"@astrojs/react": "^2.2.0",
"@astrojs/vercel": "^3.7.0",
"@propelauth/base-elements": "^0.0.16",
"@propelauth/node": "^2.1.0",
"@propelauth/react": "2.1.0-beta.4",
"@resvg/resvg-js": "^2.4.1",
"@t3-oss/env-core": "^0.6.0",
"@tanstack/eslint-plugin-query": "^4.29.4",
"@tanstack/react-query": "^4.29.5",
"@tanstack/react-query-devtools": "^4.29.6",
"@trpc/client": "^10.34.0",
"@trpc/react-query": "^10.34.0",
"@trpc/server": "^10.34.0",
"@types/cookie": "^0.5.1",
"@types/js-cookie": "^3.0.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"astro": "^2.8.0",
"astro-seo": "^0.7.2",
"clsx": "^1.2.1",
"cookie": "^0.5.0",
"drizzle-kit": "^0.19.3",
"drizzle-orm": "^0.27.0",
"eslint": "^8.44.0",
"eslint-plugin-astro": "^0.27.2",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-react-refresh": "^0.4.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"fogbender-react": "^0.2.11",
"jotai": "^2.2.2",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.1",
"postgres": "^3.3.4",
"posthog-js": "^1.69.0",
"posthog-node": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"rad-event-listener": "^0.2.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.14.1",
"satori": "^0.10.1",
"solid-js": "^1.7.6",
"stripe": "^12.12.0",
"tsx": "^3.12.7",
"unthunk": "^0.0.1",
"wretch": "^2.5.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"tailwindcss": "^3.3.2"
}
}