forked from lukeshay/astro-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.8 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
{
"name": "@astro-aws/root",
"version": "0.0.0",
"private": true,
"homepage": "https://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",
"lint": "turbo run build && eslint .",
"lint:fix": "pnpm run lint --fix",
"prettier": "prettier --ignore-unknown --no-error-on-unmatched-pattern --check .",
"prettier:fix": "pnpm run prettier --write",
"release:cut": "git add . && git commit -m 'new release' && pnpm run deploy:one infra -- PROD && pnpm run changeset publish && git push && git push --follow-tags",
"release:prepare": "pnpm run build && pnpm run synth && pnpm run changeset version && pnpm run prettier:fix",
"synth": "turbo run synth",
"synth:one": "turbo run synth --filter",
"test": "turbo run test",
"test:one": "turbo run test --filter",
"changeset": "changeset"
},
"prettier": "@lshay/prettier-config",
"eslintConfig": {
"extends": [
"../../.eslintrc.cjs"
]
},
"dependencies": {
"@changesets/changelog-git": "^0.1.14",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@lshay/eslint-config": "^0.2.5",
"@lshay/prettier-config": "^0.6.1",
"@rushstack/eslint-patch": "^1.5.1",
"eslint": "^8.53.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"prettier": "^3.1.0",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
},
"engines": {
"node": "18.x || 20.x"
}
}