forked from aspen-cloud/triplit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.35 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
{
"name": "triplit",
"private": true,
"workspaces": [
"packages/*",
"templates/*"
],
"scripts": {
"build:packages": "turbo build --filter=\"@triplit/*\" --force",
"release:packages": "yarn build:packages && yarn workspace @triplit/db run publish-pkg && yarn workspace @triplit/client run publish-pkg && yarn workspace @triplit/react run publish-pkg && yarn workspace @triplit/server-core run publish-pkg && yarn workspace @triplit/server run publish-pkg && yarn workspace @triplit/console run publish-pkg && yarn workspace @triplit/cli run publish-pkg && yarn tag:packages",
"tag:packages": "git pull --tags -f && yarn changeset tag",
"lint": "yarn workspaces foreach --all run lint",
"version": "yarn changeset version && yarn install --mode update-lockfile",
"changeset": "changeset"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/semver": "^7",
"esbuild": "0.17.18",
"prettier": "^2.6.2",
"semver": "^7.5.4",
"turbo": "^1.10.15",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"resolutions": {
"tuple-database@^2.2.0": "patch:tuple-database@patch%3Atuple-database@npm%253A2.2.0%23./.yarn/patches/tuple-database-npm-2.2.0-131af7737b.patch%3A%3Aversion=2.2.0&hash=a2c0f3&locator=%2540triplit%2540workspace%253A.#./.yarn/patches/tuple-database-patch-021b29bc0c.patch"
}
}