-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "@astro-aws/root",
"version": "0.0.0",
"private": true,
"homepage": "https://www.astro-aws.org/",
"repository": {
"type": "git",
"url": "ssh://[email protected]/lukeshay/astro-aws.git",
"directory": "."
},
"license": "MIT",
"workspaces": [
"apps/*",
"examples/*",
"packages/*",
"scripts"
],
"scripts": {
"build": "turbo run build",
"build:one": "turbo run build --filter",
"clear-cache": "rimraf **/.turbo ./pompous",
"deploy": "turbo run deploy",
"deploy:one": "turbo run deploy --filter",
"dev": "turbo run dev",
"dev:one": "turbo run dev --filter",
"format": "prettier --ignore-unknown --no-error-on-unmatched-pattern --write --check . '!**/*.astro'",
"release:cut": "git add . && git commit -m 'new release' && bun run deploy:one @astro-aws/infra -- PROD && bun run changeset publish && git push && git push --follow-tags",
"release:prepare": "bun run build && bun run synth && bun run changeset version && bun run format",
"synth": "turbo run synth",
"synth:one": "turbo run synth --filter",
"test": "turbo run test",
"test:one": "turbo run test --filter",
"changeset": "changeset"
},
"dependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@lshay/prettier-config": "^0.7.0",
"prettier": "^3.3.3",
"turbo": "^2.0.7",
"typescript": "^5.5.3"
},
"engines": {
"node": "18.x || 20.x"
},
"trustedDependencies": [
"esbuild",
"astro",
"vite",
"sharp"
],
"packageManager": "[email protected]"
}