-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.46 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
{
"name": "prompts4all",
"type": "module",
"version": "0.0.1",
"engines": {
"node": "18",
"npm": "9"
},
"scripts": {
"_esbuild:functions": "esbuild functions/[[path]].js functions/api/*.js functions/pb-jam/*.js --outdir=dist/functions --minify",
"apiDevelop": "wrangler pages dev . --port=4321 --compatibility-date=2023-04-19 --kv=AuthCodesByUserId --kv=AuthSessionsByUserId --kv=UserIdsByEmail --kv=Users --kv=Prompts",
"develop": "astro dev",
"astroBuild": "astro build",
"build": "npm-run-all --serial astroBuild _esbuild:functions",
"preview": "wrangler pages dev ./dist --remote --compatibility-date=2023-04-19",
"deployPreview": "wrangler pages publish dist --project-name=prompts4all",
"deployProduction": "wrangler pages deploy dist --project-name=prompts4all --branch=main --env=production",
"buildAndDeployProduction": "npm-run-all --serial build deployProduction"
},
"devDependencies": {
"@astrojs/cloudflare": "^7.5.1",
"@astrojs/prefetch": "^0.4.1",
"@astrojs/sitemap": "^3.0.1",
"@astrojs/svelte": "^4.0.3",
"@astrojs/tailwind": "^5.0.1",
"@tailwindcss/typography": "^0.5.10",
"astro": "^3.2.3",
"astro-compress": "^2.0.15",
"cookie": "^0.5.0",
"csv-parser": "^3.0.0",
"esbuild": "^0.19.4",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"marked": "^9.1.0",
"marked-gfm-heading-id": "^3.1.0",
"marked-mangle": "^1.1.4",
"nanoid": "^5.0.1",
"npm-run-all": "^4.1.5",
"slugify": "^1.6.6",
"wrangler": "^3.11.0"
}
}