-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.07 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "astro-ssr-spa",
"type": "module",
"author": "Dan Sasser <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/dansasser/astro-ssr-spa"
},
"homepage": "https://github.com/dansasser/astro-ssr-spa#readme",
"keywords": [
"astro",
"ssr",
"spa",
"html",
"css",
"javascript",
"tailwind",
"htmx",
"daisyui",
"mongodb",
"devtunnel",
"concurrently",
"bun",
"template",
"dts",
"typescript",
"astro-ssr-spa",
"astro-ssr-spa-template",
"e-commerce",
"blog",
"portfolio",
"landing",
"landing-page",
"headless",
"cms",
"headless-cms",
"content-management-system",
"content",
"management",
"system"
],
"version": "2.0.3",
"main": "server.mjs",
"files": [
".astro",
"config",
"db",
"interfaces",
"lib",
"log",
"public",
"scripts",
"src",
"styles",
"types",
".vscode",
"astro.config.mjs",
".env.example",
".gitignore",
"LICENSE",
"server.mjs",
"tailwind.config.mjs",
"tsconfig.json"
],
"scripts": {
"dev": "astro dev",
"dev:start": "astro build && npm_execpath=bun bun start:server || npm run start:server",
"devtunnel": "devtunnel host",
"start:server": "npm_execpath=bun bun --hot run ./server.mjs || node ./server.mjs",
"serve:tunnel": "concurrently --no-kill-others-on-fail \"npm_execpath=bun bun start:server\" \"wait-on -c ./config/waiton.json && npm_execpath=bun bun run devtunnel|| node ./config/devtunnel-fallback.js\" || concurrently --no-kill-others-on-fail \"npm run start:server\" \"wait-on -c ./config/waiton.json && npm run devtunnel || node ./config/devtunnel-fallback.js\"",
"start": "concurrently --no-kill-others-on-fail \"astro build && npm_execpath=bun bun start:server\" \"wait-on -c ./config/waiton.json && npm_execpath=bun bun devtunnel || node ./config/devtunnel-fallback.js\" || concurrently --no-kill-others-on-fail \"astro build && npm run start:server\" \"wait-on -c ./config/waiton.json && npm run devtunnel || node ./config/devtunnel-fallback.js\"\"",
"astro": "astro"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.0",
"@astrojs/check": "^0.8.1",
"@astrojs/node": "^8.3.2",
"@astrojs/react": "^3.6.0",
"@astrojs/tailwind": "^5.1.0",
"@mdi/js": "^7.4.47",
"@types/alpinejs": "^3.13.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"alpinejs": "^3.14.1",
"astro": "^4.11.5",
"astro-icon": "^1.1.0",
"astro-ssr-spa": "^2.0.2",
"body-parser": "^1.20.2",
"concurrently": "^8.2.2",
"connect-mongo": "^5.1.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-session": "^1.18.0",
"flowbite": "^2.4.1",
"iconify-icon": "^2.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"wait-on": "^7.2.0"
},
"devDependencies": {
"@iconify-json/mdi": "^1.1.67",
"@types/bun": "^1.1.6",
"daisyui": "^4.12.10"
}
}