forked from lukeshay/astro-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.68 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
{
"name": "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": [
"packages/*",
"apps/*",
"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": "eslint .",
"lint:fix": "yarn lint --fix",
"prettier": "prettier --ignore-unknown --no-error-on-unmatched-pattern --check .",
"prettier:fix": "yarn prettier --write",
"release:cut": "git add . && git commit -m 'new release' && WEB_ACL_ARN='' yarn deploy:one infra -- PROD && yarn changeset publish && git push && git push --follow-tags",
"release:prepare": "yarn build && yarn changeset version && yarn prettier:fix",
"synth": "turbo run synth",
"synth:one": "turbo run synth --filter",
"test": "turbo run test",
"test:one": "turbo run test --filter"
},
"prettier": "@lshay/prettier-config",
"eslintConfig": {
"extends": [
"../../.eslintrc.cjs"
]
},
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@lshay/eslint-config": "^0.2.2",
"@lshay/prettier-config": "^0.5.3",
"@rushstack/eslint-patch": "^1.2.0",
"eslint": "^8.34.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.4",
"turbo": "^1.8.0",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]",
"engines": {
"node": "16.x || 18.x"
}
}