-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.16 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
{
"name": "makefy",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev --env-mode=loose",
"dev:web": "turbo dev --filter=@makefy/web --env-mode=loose",
"dev:chat-with-pdf": "turbo dev --filter=@makefy/chat-with-pdf --env-mode=loose",
"dev:text-tools": "turbo dev --filter=@makefy/text-tools --env-mode=loose",
"build:web": "turbo build --filter=@makefy/web --env-mode=loose",
"build:chat-with-pdf": "turbo build --filter=@makefy/chat-with-pdf --env-mode=loose",
"build:text-tools": "turbo build --filter=@makefy/text-tools --env-mode=loose",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"commit": "sui-mono commit"
},
"devDependencies": {
"@makefy/eslint-config": "workspace:*",
"@makefy/typescript-config": "workspace:*",
"@s-ui/mono": "2.45.0",
"dotenv-cli": "7.4.2",
"eslint-config-next": "14.2.5",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.14",
"tsx": "4.16.0",
"turbo": "2.0.12"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {}
}