-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 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
41
42
43
44
{
"name": "dev-events-workshop",
"version": "1.0.0",
"description": "A community event listing app for hackathons and developer events",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"next": "15.2.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"zod": "3.24.2",
"date-fns": "4.1.0",
"nanoid": "5.0.9"
},
"devDependencies": {
"@types/node": "22.10.5",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"typescript": "5.7.3",
"tailwindcss": "4.1.0",
"@tailwindcss/postcss": "4.1.0",
"postcss": "8.5.1",
"eslint": "9.18.0",
"@eslint/js": "9.18.0",
"typescript-eslint": "8.20.0",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"vitest": "2.1.8",
"@vitejs/plugin-react": "4.3.4",
"@testing-library/react": "16.1.0",
"@testing-library/jest-dom": "6.6.3",
"jsdom": "26.0.0"
},
"packageManager": "pnpm@9.15.4"
}