-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.25 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "llm-integration-platform",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"description": "SaaS platform designed for enterprise clients to seamlessly integrate, manage, and utilize Large Language Models (LLMs) within their environment.",
"license": "Apache License 2.0",
"repository": {
"type": "git",
"url": "https://github.com/evil-genius-labs/llm-integration-platform"
},
"scripts": {
"db:migrate": "yarn workspace @llm/backend db:migrate",
"es:reindex:all": "yarn workspace @llm/backend es:reindex:all",
"chats:summarize:all": "yarn workspace @llm/backend chats:summarize:all",
"clean": "find . -type f -name 'vite.config.*.timestamp-*' -ls -delete 1> /dev/null 2>& 1",
"build": "NODE_ENV=production turbo run build --cache-dir=.turbo",
"check:types": "turbo check:types --parallel",
"dev": "npm run clean && turbo build:dev && turbo watch build:dev dev",
"lint": "turbo lint --parallel",
"prepare": "husky",
"test": "turbo run test --parallel",
"test:watch": "turbo run test:watch --parallel"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/ensure": "^19.5.0",
"@commitlint/message": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@eslint-react/eslint-plugin": "^1.16.1",
"@manypkg/get-packages": "^2.2.2",
"@swc/core": "^1.9.2",
"@vitejs/plugin-react": "^4.3.3",
"@vitejs/plugin-vue": "^5.2.0",
"concurrently": "^9.1.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.13",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"pino": "^9.5.0",
"reflect-metadata": "^0.2.2",
"rollup-plugin-node-externals": "^8.0.0",
"rollup-plugin-swc3": "^0.12.1",
"sass-embedded": "^1.83.0",
"tailwind": "^4.0.0",
"turbo": "=2.1.0",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.2.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.5"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix --config ./eslint.config.mjs"
]
},
"workspaces": [
"packages/*",
"apps/*"
]
}