-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.41 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.41 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "rep",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"back": "ts-node-dev packages/backend/src",
"front": "cd packages/frontend && quasar dev",
"init-db": "cd packages/backend && npx prisma migrate dev --name init --schema=./src/prisma/schema.prisma",
"gen-db-client": "cd packages/backend && npx prisma generate --schema=./src/prisma/schema.prisma"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "[email protected]",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.17",
"@types/node": "^20.17.32",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"drizzle-kit": "^0.31.1",
"eslint": "^8.48.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-autofix": "^1.1.0",
"eslint-plugin-import": "^2.28.1",
"prisma": "^6.7.0",
"tsx": "^4.19.4",
"typescript": "~5.5.4"
},
"dependencies": {
"@prisma/client": "6.7.0",
"@tanstack/vue-query": "^5.75.1",
"@trpc/client": "^11.1.2",
"@trpc/server": "^11.1.2",
"@types/express": "^5.0.1",
"axios": "^1.9.0",
"better-sqlite3": "^11.9.1",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.43.1",
"express": "^5.1.0",
"tiktoken": "^1.0.21",
"zod": "^3.24.4"
}
}