-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 2.6 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
{
"name": "containerflare",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "astro dev",
"dev:cf": "( sleep 10 && curl http://localhost:8788/v2/seed ) & wrangler pages dev --compatibility-date=2023-09-01 --kv kv --r2 r2 --binding $(cat ./.env) -- npm run dev:a",
"preview": "npm run build && wrangler pages dev ./dist --compatibility-date=2023-09-01 --kv kv --r2 r2 --binding $(cat ./.env)",
"build": "astro build",
"publish": "npm run build && wrangler pages publish ./dist #--branch main",
"--Oberservability": "---------------------------------------------------------",
"logs:preview": "wrangler pages deployment tail --project-name containerflare --environment preview",
"logs:prod": "wrangler pages deployment tail --project-name containerflare",
"--Lint-----------": "---------------------------------------------------------",
"format": "prettier -w .",
"lint": "eslint .",
"lint:dashboard": "eslint-dashboard",
"prettier:ci": "prettier --check .",
"--Test-----------": "---------------------------------------------------------",
"pull:local": "docker pull localhost:4321/hello-world:latest && docker image rm -f localhost:4321/hello-world:latest",
"pull:remote": "docker pull hello-world:latest && docker image rm -f hello-world:latest",
"burp": "sudo nano /etc/systemd/system/docker.service.d/http-proxy.conf && sudo systemctl daemon-reload && sudo systemctl restart docker"
},
"dependencies": {
"@astrojs/cloudflare": "^7.7.1",
"astro": "^3.5.5"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231025.0",
"@miniflare/cache": "^2.14.1",
"@miniflare/d1": "^2.14.1",
"@miniflare/durable-objects": "^2.14.1",
"@miniflare/kv": "^2.14.1",
"@miniflare/r2": "^2.14.1",
"@miniflare/shared": "^2.14.1",
"@miniflare/storage-file": "^2.14.1",
"@miniflare/storage-memory": "^2.14.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-dashboard": "^0.1.1",
"eslint-plugin-astro": "^0.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-regexp": "^2.1.1",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"prettier": "^3.1.0",
"prettier-plugin-astro": "^0.12.2",
"typescript": "^5.2.2",
"wrangler": "^3.16.0"
}
}