-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "daodejing-translations",
"repository": "https://github.com/dericko/ddj.git",
"license": "MIT",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "prisma generate && next dev",
"build": "prisma generate && prisma db push && prisma db seed && next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"autoprefixer": "10.4.14",
"clsx": "^1.2.1",
"cmdk": "^0.2.0",
"dotenv": "^16.3.1",
"gpt3-tokenizer": "^1.1.5",
"next": "13.4.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^1.12.0",
"use-debounce": "^9.0.4"
},
"devDependencies": {
"@types/node": "18.15.11",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"eslint": "8.38.0",
"eslint-config-next": "13.3.5-canary.1",
"postcss": "8.4.22",
"prisma": "^5.0.0",
"tailwindcss": "3.3.1",
"ts-node": "^10.9.1",
"turbo": "^1.9.3",
"typescript": "5.0.4"
}
}