-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.21 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": "marketplace",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && workbox injectManifest workbox-config.cjs",
"preview": "wrangler pages dev ./dist",
"astro": "astro",
"prepare": "husky"
},
"dependencies": {
"@astrojs/cloudflare": "9.2.1",
"@astrojs/mdx": "^3.1.3",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/solid-js": "^4.4.0",
"@astrojs/tailwind": "^5.1.0",
"@lexical/react": "^0.12.2",
"@nanostores/persistent": "^0.9.1",
"@nanostores/solid": "^0.4.2",
"@neodrag/solid": "^2.0.4",
"@playwright/test": "^1.41.2",
"@stripe/stripe-js": "^3.0.6",
"@supabase/supabase-js": "^2.39.6",
"@tabler/icons-solidjs": "^2.47.0",
"@types/stripe-v3": "^3.1.33",
"astro": "^4.13.2",
"astro-compress": "^2.2.11",
"astro-i18n-aut": "^0.7.0",
"astro-icon": "^1.0.0-next.2",
"astro-service-worker": "^0.1.2",
"babel-preset-solid": "^1.7.7",
"i18next": "^23.2.11",
"intl-tel-input": "^18.2.1",
"jquery": "^3.7.0",
"lexical": "^0.12.2",
"nanostores": "^0.9.5",
"react": "^18.2.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-toc": "^8.0.1",
"solid-js": "^1.7.7",
"solid-stripe": "^0.4.0",
"stripe": "^14.18.0",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.3.2",
"tinymce": "^6.8.3",
"uppy": "^3.25.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@iconify-json/tabler": "^1.1.87",
"@tailwindcss/typography": "^0.5.10",
"@types/intl-tel-input": "^18.1.1",
"@types/jquery": "^3.5.16",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.7",
"@types/tinymce": "^4.6.9",
"@types/uuid": "^9.0.8",
"@vite-pwa/astro": "^0.2.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"prettier": "^3.0.1",
"prettier-plugin-astro": "^0.11.0",
"prettier-plugin-tailwindcss": "^0.5.3",
"supabase": "^1.207.9",
"vite-plugin-pwa": "^0.16.5",
"workbox-cli": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0",
"wrangler": "^3.4.0"
},
"lint-staged": {
"*.{js,css,md,tsx,astro}": "prettier --write"
}
}