forked from novoslovnica/interlex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.88 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "interlex",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"release": "bash release.sh",
"fill:db": "npx tsx scripts/db/fill-db.ts",
"fill:is:db": "npx tsx scripts/db/fill-is-db.ts",
"recreate:db": "sh ./scripts/db/common.sh",
"init:db": "npx tsx scripts/db/init-db.ts",
"db:gen-auth": "cross-env DB_TYPE=auth prisma generate",
"db:gen-data": "cross-env DB_TYPE=data prisma generate",
"db:migrate-auth": "cross-env DB_TYPE=auth prisma migrate dev --create-only",
"db:migrate-data": "cross-env DB_TYPE=data prisma migrate dev --create-only"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@prisma/adapter-better-sqlite3": "^7.8.0",
"@prisma/client": "^7.8.0",
"@prisma/config": "^7.8.0",
"@tanstack/react-query": "^5.101.1",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.14.3",
"better-sqlite3": "^12.11.1",
"next": "16.2.9",
"next-auth": "^5.0.0-beta.31",
"next-intl": "^4.13.0",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"recharts": "^3.9.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/papaparse": "^5.5.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"axios": "^1.18.1",
"cheerio": "^1.2.0",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "16.2.9",
"papaparse": "^5.5.4",
"pdf-parse": "^2.4.5",
"prisma": "^7.8.0",
"tailwindcss": "^4",
"typescript": "^5"
},
"optionalDependencies": {
"@next/swc-linux-x64-gnu": "^16.2.9",
"@tailwindcss/oxide-linux-x64-gnu": "^4.3.2",
"lightningcss-linux-x64-gnu": "^1.32.0"
}
}