-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 979 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
31
32
33
{
"name": "contrak",
"private": true,
"workspaces": [
"packages/*",
"web",
"cli"
],
"scripts": {
"dev": "yarn with-env turbo dev --parallel",
"dev:web": "yarn with-env turbo dev --parallel --filter='@contrak/web...'",
"build:web": "yarn with-env turbo build --filter='@contrak/web...'",
"start:web": "yarn with-env yarn workspace @contrak/web start",
"build:sdk": "yarn with-env turbo build --filter='@contrak/sdk...'",
"dev:cli": "./cli/bin/dev",
"build:cli": "yarn with-env turbo build --filter='@contrak/cli...'",
"run:cli": "./cli/bin/run",
"db:push": "yarn with-env yarn workspace @contrak/db push",
"lint": "turbo run lint",
"clean": "turbo run clean",
"with-env": "dotenv -e ./.env --"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.0.0"
},
"devDependencies": {
"dotenv-cli": "^7.3.0",
"prettier": "^3.0.3",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
}
}