-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
31 lines (31 loc) · 1.9 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
{
"name": "triplit",
"private": true,
"workspaces": [
"packages/*",
"templates/*"
],
"scripts": {
"build:packages": "turbo build --filter=\"@triplit/*\" --filter=create-triplit-app --force",
"focus:packages": "yarn workspaces focus @triplit/tuple-database @triplit/db @triplit/client @triplit/react @triplit/svelte @triplit/vue @triplit/angular @triplit/server-core @triplit/server @triplit/console @triplit/cli create-triplit-app @triplit/tanstack",
"release:packages": "yarn build:packages && yarn workspace @triplit/tuple-database run publish-pkg && yarn workspace @triplit/db run publish-pkg && yarn workspace @triplit/client run publish-pkg && yarn workspace @triplit/react run publish-pkg && yarn workspace @triplit/svelte run publish-pkg && yarn workspace @triplit/vue run publish-pkg && yarn workspace @triplit/angular 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 workspace create-triplit-app run publish-pkg && yarn workspace @triplit/tanstack run publish-pkg && yarn tag:packages",
"tag:packages": "git pull --tags -f && changeset tag",
"lint": "yarn workspaces foreach --all run lint",
"version": "changeset version && yarn install --mode update-lockfile",
"changeset": "changeset && node ./scripts/generate-cli-dependency-changeset.js",
"test": "yarn workspaces foreach --all run test"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/semver": "^7",
"esbuild": "0.17.18",
"prettier": "^3.3.3",
"semver": "^7.5.4",
"turbo": "^2.0.3",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"resolutions": {
"nextra-theme-docs@^2.13.3": "patch:nextra-theme-docs@npm%3A2.13.3#./.yarn/patches/nextra-theme-docs-npm-2.13.3-ed66737b67.patch"
}
}