-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.37 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
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
{
"name": "opire_frontend",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@11.1.1",
"scripts": {
"predev": "rm -rf .next/dev",
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:component": "vitest run",
"typecheck": "tsc --noEmit",
"cpd": "jscpd"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@hapi/iron": "^7.0.1",
"@mantine/core": "^9.2.0",
"@mantine/dates": "^9.2.0",
"@mantine/form": "^9.2.0",
"@mantine/hooks": "^9.2.0",
"@mantine/modals": "^9.2.0",
"@mantine/notifications": "^9.2.0",
"@tabler/icons-react": "^3.44.0",
"@vercel/analytics": "^2.0.1",
"@vercel/og": "^0.11.1",
"cookie": "^1.1.1",
"cookies-next": "^6.1.1",
"dayjs": "^1.11.20",
"jsonwebtoken": "^9.0.3",
"next": "^16.2.6",
"next-client-cookies": "^2.1.1",
"next-connect": "^1.0.0",
"react": "^19.2.6",
"react-confetti": "^6.4.0",
"react-dom": "^19.2.6",
"swr": "^2.4.1",
"ulid": "^3.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.4",
"@swc/core": "^1.15.33",
"@tailwindcss/postcss": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"dotenv": "^17.4.2",
"eslint": "^9.39.2",
"eslint-config-next": "^16.2.6",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"jscpd": "^4.1.1",
"jsdom": "^27.3.0",
"tailwindcss": "^4.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}