-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.54 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "langai",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"prisma": "prisma generate",
"lint": "next lint",
"start": "next start",
"docker:dev": "docker image prune -f && docker compose up dev --build --remove-orphans",
"docker:prod": "docker image prune -f && docker compose up prod-db --build --remove-orphans",
"docker:push": "docker compose build prod && docker tag langai-prod erickdepavo/langai && docker push erickdepavo/langai",
"cypress:open": "cypress open",
"test": "cypress run --component"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@auth0/nextjs-auth0": "^2.5.0",
"@aws-sdk/client-s3": "^3.332.0",
"@aws-sdk/lib-storage": "^3.332.0",
"@aws-sdk/s3-request-presigner": "^3.342.0",
"@aws-sdk/util-endpoints": "^3.332.0",
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.17",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.14.0",
"@tanstack/react-query": "^4.28.0",
"@trpc/client": "^10.18.0",
"@trpc/next": "^10.18.0",
"@trpc/react-query": "^10.18.0",
"@trpc/server": "^10.18.0",
"@types/dom-mediacapture-record": "^1.0.16",
"@types/fluent-ffmpeg": "^2.1.21",
"@types/luxon": "^3.3.0",
"faker": "^6.6.6",
"fluent-ffmpeg": "^2.1.2",
"luxon": "^3.3.0",
"next": "^13.2.4",
"next-auth": "^4.20.1",
"next-usequerystate": "^1.7.2",
"openai": "^3.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-webcam": "^7.0.1",
"superjson": "1.12.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@testing-library/cypress": "^9.0.0",
"@types/eslint": "^8.21.3",
"@types/faker": "^6.6.9",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.16",
"@types/prettier": "^2.7.2",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"autoprefixer": "^10.4.14",
"cypress": "^12.14.0",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"jest": "^29.5.0",
"postcss": "^8.4.21",
"prettier": "^2.8.6",
"prettier-plugin-tailwindcss": "^0.2.5",
"prisma": "^4.14.0",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2"
},
"ct3aMetadata": {
"initVersion": "7.10.0"
}
}