forked from chingu-voyages/V61-tier3-team-34
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "dashfetch",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"test:e2e": "cross-env PW_DEV_PORT=3000 npx playwright test",
"test:e2e:headed": "cross-env PW_DEV_PORT=3000 npx playwright test --headed"
},
"dependencies": {
"@supabase/supabase-js": "^2.45.4",
"groq-sdk": "^0.7.0",
"mammoth": "^1.8.0",
"next": "16.2.9",
"pdf-parse": "^1.1.1",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.9",
"cross-env": "^10.1.0",
"cross-env-shell": "^7.0.3",
"eslint": "^9",
"eslint-config-next": "16.2.9",
"jsdom": "^25.0.1",
"tailwindcss": "^4",
"vitest": "^2.1.4"
}
}