-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 3.15 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "feedback-flow",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"dev": "next dev",
"dev:sst": "sh dev-sst.sh",
"generate": "drizzle-kit generate:pg --config=drizzle.config.ts",
"lint": "next lint",
"lint:fix": "next lint --fix",
"migrate": "npx tsx db/drizzle.ts",
"start": "next start",
"test": "vitest",
"test:ci": "vitest run --coverage",
"test:e2e": "npx cypress open",
"tsc": "tsc",
"prepare": "husky",
"format": "prettier --write --ignore-unknown ."
},
"dependencies": {
"@aws-sdk/client-s3": "^3.583.0",
"@aws-sdk/client-sqs": "^3.582.0",
"@aws-sdk/credential-providers": "^3.577.0",
"@aws-sdk/s3-request-presigner": "^3.583.0",
"@dnd-kit/core": "^6.1.0",
"@headlessui/react": "^1.7.18",
"@mantine/charts": "^7.9.2",
"@mantine/core": "^7.9.2",
"@mantine/dates": "^7.9.2",
"@mantine/dropzone": "^7.9.2",
"@mantine/hooks": "^7.9.2",
"@tanstack/react-query": "^5.37.1",
"@vercel/postgres": "^0.8.0",
"bcrypt": "^5.1.1",
"compute-cosine-similarity": "^1.1.0",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.10",
"embla-carousel-autoplay": "^8.1.3",
"embla-carousel-react": "^8.1.3",
"next": "14.1.4",
"next-auth": "^5.0.0-beta.16",
"openai": "^4.47.1",
"pg": "^8.11.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"recharts": "^2.12.7",
"sharp": "^0.33.4",
"sst": "^3.0.17",
"svix": "^1.24.0",
"ts-node": "^10.9.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.24.6",
"@cypress/code-coverage": "^3.12.39",
"@playwright/test": "^1.44.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/aws-lambda": "^8.10.138",
"@types/bcrypt": "^5.0.2",
"@types/lodash": "^4.17.4",
"@types/node": "^20.12.12",
"@types/pg": "^8.11.6",
"@types/react": "^18.3.2",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"autoprefixer": "^10.4.19",
"aws-cdk-lib": "2.132.1",
"babel-loader": "^9.1.3",
"constructs": "10.3.0",
"cypress": "^13.10.0",
"drizzle-kit": "^0.21.3",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-testing-library": "^6.2.2",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"playwright": "^1.43.1",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.15.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"ts-loader": "^9.5.1",
"typescript": "~5.3.0",
"vitest": "^1.6.0"
}
}