-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
52 lines (52 loc) · 1.53 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "local.ai",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"sdk/js"
],
"scripts": {
"start": "turbo run start --parallel",
"dev": "turbo run dev --parallel",
"dev:web": "turbo run dev --filter=@localai/web",
"dev:desktop": "turbo run dev --filter=@localai/desktop",
"build": "turbo run build",
"build:sdk": "turbo run build [email protected]/sdk",
"build:web": "turbo run build --filter=@localai/web",
"build:desktop": "turbo run build --filter=@localai/desktop",
"build:desktop:sign": "dotenv -- turbo run build --filter=@localai/desktop",
"package": "turbo run package --parallel",
"clean": "turbo run clean --parallel",
"lint": "turbo run lint --parallel --output-logs=new-only",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"next": "13.4.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"ts-dedent": "2.2.0"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "4.0.1",
"@plasmohq/rps": "1.8.7",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"dotenv-cli": "7.2.1",
"eslint": "8.44.0",
"eslint-config-next": "13.4.9",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-react": "7.32.2",
"prettier": "3.0.0",
"turbo": "1.10.7",
"typescript": "5.1.6"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"packageManager": "[email protected]"
}