-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.84 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "temp-prisma",
"version": "1.1.0-alpha",
"description": "",
"main": "index.js",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"reset": "rm -rf node_modules && rm -rf package-lock.json && npm install && npx prisma migrate dev && npx tsx seeds/ingest.ts",
"start": "npx prisma migrate deploy && next start",
"test": "npx jest --verbose=true --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"jest": "^29.7.0",
"prisma": "^5.15.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"dependencies": {
"@google-cloud/language": "^6.4.0",
"@google-cloud/storage": "^7.11.2",
"@google-cloud/text-to-speech": "^5.3.0",
"@mantine/core": "^7.10.2",
"@mantine/form": "^7.10.2",
"@mantine/notifications": "^7.10.2",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.15.0",
"@tabler/icons-react": "^3.6.0",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"@types/diff": "^6.0.0",
"diff": "^7.0.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"femto-fsrs": "^1.0.2",
"next": "^14.2.4",
"next-auth": "^4.24.7",
"nodemailer": "^6.9.13",
"openai": "^4.63.0",
"prom-client": "^15.1.2",
"radash": "^12.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"superjson": "^2.2.1",
"zod": "^3.23.8"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1"
}
}
}