-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 834 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 834 Bytes
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
{
"name": "mindscape-learning",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"start": "node server/index.js",
"dev": "node --watch server/index.js",
"dev:vite": "vite",
"build": "vite build",
"test": "node --test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"quality": "npm run lint && npm test"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@hono/node-server": "^2.1.0",
"better-sqlite3": "^13.0.3",
"dotenv": "^16.4.0",
"groq-sdk": "^1.1.2",
"hono": "^4.6.0",
"jsonwebtoken": "^9.0.3",
"katex": "^0.16.25",
"stripe": "^22.4.0",
"ws": "^8.21.2"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"three": "^0.164.1",
"vite": "^8.2.1"
}
}