-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 977 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 977 Bytes
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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@tailwindcss/postcss": "^4.0.7",
"@vercel/postgres": "^0.10.0",
"next": "^14.0.0",
"postcss": "^8.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^11.0.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.11",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"autoprefixer": "10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.27",
"eslint-plugin-react": "^7.37.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"tailwindcss": "^4.0.7",
"ts-jest": "^29.3.0",
"typescript": "^5.8.3"
}
}