-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.27 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.27 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": "almostyellow",
"private": true,
"scripts": {
"dev": "pnpm open-browser && next dev --turbopack",
"open-browser": "start http://localhost:3000",
"build": "pnpm run lint && next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "prettier . --write && pnpm run lint && next build && playwright test",
"test-only": "pnpm run lint && playwright test",
"pretty": "prettier . --write",
"pretty-check": "prettier . --check",
"pretty-lint": "prettier . --write && pnpm run lint",
"prepare": "husky"
},
"dependencies": {
"@mantine/core": "^8.3.14",
"@mantine/form": "^8.3.18",
"@mantine/hooks": "^8.3.14",
"@tabler/icons-react": "^3.36.1",
"@vercel/analytics": "^1.6.1",
"@vercel/postgres": "^0.10.0",
"@vercel/speed-insights": "^1.3.1",
"bcrypt": "^6.0.0",
"dotenv": "^17.4.0",
"next": "^16.2.3",
"next-auth": "5.0.0-beta.30",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.5.0",
"sharp": "^0.34.5",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@next/eslint-plugin-next": "16.1.7",
"@playwright/test": "^1.58.1",
"@types/bcrypt": "^6.0.0",
"@types/node": "^25.2.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^9.39.2",
"eslint-config-next": "16.2.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8.5.8",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "8.54.0"
},
"pnpm": {
"overrides": {
"flatted": ">=3.4.2"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}