This repository has been archived by the owner on Jul 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.91 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
{
"name": "bespoke",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"commit": "cz",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"dev": "turbo run dev --parallel",
"flush": "yarn cache clean && lerna clean --yes && rm -rf node_modules && yarn",
"postinstall": "patch-package",
"release": "lerna version --conventional-commits --create-release github --yes",
"setup": "turbo run build --scope=@bespoke/common --no-deps --force",
"build": "turbo run build",
"build:web": "turbo run build --scope=@bespoke/web --include-dependencies --no-deps --force",
"build:server": "turbo run build --scope=@bespoke/server --include-dependencies --no-deps --force",
"fly:web": "fly deploy --config ./fly.web.toml --dockerfile ./Dockerfile.web --build-arg SENTRY_AUTH_TOKEN=$SENTRY_AUTH_TOKEN --build-arg SENTRY_ORG=$SENTRY_ORG --build-arg SENTRY_PROJECT=$SENTRY_PROJECT --build-arg AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID --build-arg AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY --build-arg AWS_S3_BUCKET_REGION=$AWS_S3_BUCKET_REGION --build-arg AWS_S3_BUCKET=$AWS_S3_BUCKET --build-arg CLOUDFRONT=$CLOUDFRONT",
"deploy:server": "fly deploy --config ./fly.server.toml --dockerfile ./Dockerfile.server",
"deploy:web": "dotenv -- yarn fly:web"
},
"devDependencies": {
"commitizen": "^4.3.0",
"cz-conventional-changelog": "3.3.0",
"dotenv-cli": "^7.2.1",
"lerna": "^4.0.0",
"prettier": "2.8.8",
"turbo": "1.10.7"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"dependencies": {
"patch-package": "^7.0.0",
"postinstall-postinstall": "^2.1.0"
},
"packageManager": "[email protected]",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"nanoid": "3.3.4",
"typescript": "4.9.5",
"immer": "9.0.19",
"lerna": "4.0.0"
}
}