-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1 KB
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
{
"name": "chat-cpt",
"version": "1.0.0",
"description": "ChatCPT – Cosmo's Prompt Tutor",
"type": "module",
"main": "server.js",
"scripts": {
"build": "esbuild public/app.js --bundle --outfile=public/app.bundle.js --format=esm --platform=browser",
"build:watch": "esbuild public/app.js --bundle --outfile=public/app.bundle.js --format=esm --platform=browser --watch",
"start": "npm run build && node server.js",
"dev": "npm run build && concurrently -k -n client,server -c blue,green \"npm:build:watch\" \"node --watch server.js\"",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@octavus/client-sdk": "^3.2.0",
"@octavus/server-sdk": "^3.2.0",
"dotenv": "^17.4.2",
"express": "^4.19.2",
"highlight.js": "^11.11.1",
"marked": "^18.0.3",
"marked-highlight": "^2.2.4"
},
"devDependencies": {
"@octavus/cli": "^3.2.0",
"concurrently": "^10.0.1",
"esbuild": "^0.28.0",
"supertest": "^7.2.2",
"vitest": "^4.1.6"
}
}