forked from devflowinc/trieve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 844 Bytes
/
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
{
"name": "trieve",
"version": "1.0.0",
"private": true,
"main": "index.js",
"workspaces": [
"frontends/search",
"frontends/chat",
"frontends/dashboard",
"frontends/shared",
"frontends/config",
"clients/ts-sdk",
"clients/search-component"
],
"scripts": {
"dev": "turbo dev --filter=\"./frontends/**\"",
"build": "turbo build --filter=\"./frontends/**\"",
"build:clean-client": "./convenience.sh -c",
"lint": "turbo lint --filter=\"./frontends/**\"",
"lint:CI": "turbo lint:CI --filter=\"./frontends/**\"",
"typecheck": "turbo typecheck --filter=\"./frontends/**\""
},
"repository": "git@github.com:devflowinc/trieve.git",
"author": "Drew Harris <harrisd@smu.edu>",
"license": "MIT",
"devDependencies": {
"turbo": "^2.0.4"
},
"packageManager": "yarn@1.22.22"
}