-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.3 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.3 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
74
75
76
77
{
"name": "growtomiddle",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:on-host": "MONGODB_URI=mongodb://admin:password@localhost:27017 next dev",
"build": "next build",
"build:on-host": "MONGODB_URI=mongodb://admin:password@localhost:27017 next build",
"build-prerender": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"typegen": "next typegen",
"generate": "plop",
"seed:vacancies": "tsx dev-tools/scripts/seed-vacancies.ts"
},
"engines": {
"node": "24"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@ant-design/nextjs-registry": "^1.3.0",
"@ant-design/v5-patch-for-react-19": "^1.0.3",
"@auth/mongodb-adapter": "^3.11.1",
"@hookform/resolvers": "^5.2.2",
"@sentry/nextjs": "^10.32.1",
"@vercel/analytics": "^1.6.1",
"antd": "^6.1.1",
"date-fns": "^4.1.0",
"mongodb": "^7.0.0",
"mongoose": "^8.21.0",
"next": "^16.1.0",
"next-auth": "5.0.0-beta.30",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.69.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@faker-js/faker": "^9.3.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@storybook/addon-a11y": "^10.1.10",
"@storybook/addon-docs": "^10.1.10",
"@storybook/addon-onboarding": "^10.1.10",
"@storybook/addon-vitest": "^10.1.10",
"@storybook/nextjs-vite": "^10.1.10",
"@types/node": "^24.10.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16",
"dotenv": "^16.4.7",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-storybook": "^10.1.10",
"playwright": "^1.57.0",
"plop": "^4.0.1",
"prettier": "^3.7.4",
"storybook": "^10.1.10",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"packageManager": "pnpm@10.27.0",
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}