-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.71 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
{
"dependencies": {
"@huggingface/inference": "^2.6.6",
"@prisma/client": "5.5.2",
"@supabase/supabase-js": "^2.41.1",
"dotenv": "^16.3.1",
"next": "^14.0.1",
"prisma": "5.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"sqlite3": "^5.1.6",
"weaviate-ts-client": "^2.1.1"
},
"description": "This project was bootstrapped with create-rubric-app",
"devDependencies": {
"@rubriclab/eslint-config": "latest",
"@rubriclab/prettier-config": "latest",
"@rubriclab/tailwind-config": "latest",
"@rubriclab/typescript-config": "latest",
"@t3-oss/env-nextjs": "^0.7.1",
"@types/bun": "^1.0.11",
"@types/node": "20.8.10",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"autoprefixer": "^10.4.16",
"eslint": "^8.52.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"zod": "^3.22.4"
},
"license": "UNLICENSED",
"name": "my-app",
"prisma": {
"seed": "npx ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"private": true,
"scripts": {
"build": "next build",
"db:dev:push": "prisma generate --schema=./prisma/dev/schema.prisma && prisma db push --schema=./prisma/dev/schema.prisma",
"db:dev:studio": "prisma studio --schema=./prisma/dev/schema.prisma",
"db:push": "prisma generate && prisma db push",
"db:studio": "prisma studio",
"dev": "next dev",
"format": "prettier --write . --ignore-path .gitignore",
"generate": "touch prisma/dev.db",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.json,.ts,.tsx",
"start": "next start"
},
"version": "0.0.0"
}