-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 2.08 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 2.08 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
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": "storeplate",
"version": "2.5.0",
"description": "Astro and Tailwindcss boilerplate",
"author": "zeon.studio",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "concurrently \"node scripts/themeGenerator.js --watch\" \"astro dev\"",
"build": "node scripts/themeGenerator.js && astro build",
"preview": "astro preview",
"format": "prettier -w ./src",
"check": "astro check",
"remove-darkmode": "npm run format",
"test": "vitest"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/mdx": "4.3.12",
"@astrojs/node": "^9.5.1",
"@astrojs/react": "4.4.2",
"@astrojs/sitemap": "^3.6.0",
"@digi4care/astro-google-tagmanager": "^1.6.0",
"@justinribeiro/lite-youtube": "^1.9.0",
"@nanostores/react": "^1.0.0",
"@paypal/react-paypal-js": "^8.9.2",
"appwrite": "^21.5.0",
"astro": "^5.16.3",
"astro-auto-import": "^0.4.5",
"astro-font": "^1.1.0",
"date-fns": "^4.1.0",
"github-slugger": "^2.0.0",
"js-cookie": "^3.0.5",
"marked": "^17.0.1",
"nanostores": "^1.1.0",
"node-appwrite": "^21.1.0",
"prop-types": "^15.8.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-gravatar": "^2.6.3",
"react-icons": "^5.5.0",
"remark-collapse": "^0.1.2",
"remark-toc": "^9.0.0",
"resend": "^6.6.0",
"sharp": "^0.34.5",
"swiper": "^12.0.3",
"transbank-sdk": "^6.1.1",
"vite": "^7.2.6"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.17",
"@testing-library/react": "^16.3.2",
"@types/js-cookie": "^3.0.6",
"@types/node": "24.10.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/react-gravatar": "^2.6.14",
"concurrently": "^9.2.1",
"eslint": "^9.39.1",
"jsdom": "^27.4.0",
"prettier": "^3.7.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.1",
"tailwind-bootstrap-grid": "^6.0.0",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
}
}