-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.43 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
{
"name": "schnuppertag-bilder",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"liip-dev:toggle": "[ -f .vscode/settings.json ] && mv .vscode/settings.json .vscode/deactivated.settings.json || mv .vscode/deactivated.settings.json .vscode/settings.json",
"liip-dev": "concurrently --names \"BildGenerierung,AufgabenFrontend,Aufgaben\" -c \"green,red,cyan\" --kill-others \"vite --port 3000\" \"npm run tasks\" \"npm run tasks:build:watch\"",
"tasks:build:watch": "nodemon -w TASKS.md scripts/build-tasks.js",
"tasks:build": "node scripts/build-tasks.js",
"tasks": "cd tasks && vite --port 3001 --open",
"chat": "cd chat && vite --port 3003 --open",
"provide-key": "cd openai-api-key-provider && npm start",
"install": "cd openai-api-key-provider && npm i && cd ../tasks && npm i && cd ../chat && npm i",
"start": "concurrently --names \"BildGenerierung,Aufgaben,Chat\" -c \"green,red,blue\" --kill-others \"vite --port 3000 --open\" \"npm run tasks\" \"npm run chat\""
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tsconfig/svelte": "^5.0.2",
"concurrently": "^8.2.2",
"nodemon": "^3.0.1",
"open": "^9.1.0",
"svelte": "^4.2.3",
"svelte-check": "^3.6.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^5.0.0"
},
"dependencies": {
"highlight.js": "^11.9.0",
"highlightjs-svelte": "^1.0.6",
"openai": "^4.19.1"
}
}