-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.48 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.48 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "book-cook",
"version": "0.0.0",
"description": "Recipe management application",
"private": true,
"sideEffects": [
"*.css",
"*.scss",
"*.less",
"src/mocks/**/*"
],
"type": "module",
"scripts": {
"dev": "next dev ",
"build": "next build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"start": "next start",
"lint": "next lint --max-warnings=0",
"lint:fix": "next lint --fix",
"format": "prettier --write",
"export": "next build && next export",
"analyze": "ANALYZE=true next build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:e2e": "playwright test"
},
"engines": {
"node": ">=22.5.1"
},
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
}
},
"resolutions": {
"string-width": "8.1.0",
"wrap-ansi": "9.0.0"
},
"dependencies": {
"@ai-sdk/google": "^1.2.8",
"@ai-sdk/openai": "^1.3.7",
"@aws-sdk/client-s3": "^3.1020.0",
"@aws-sdk/s3-request-presigner": "^3.1020.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@ducanh2912/next-pwa": "^10.2.9",
"@lexical/list": "^0.40.0",
"@lexical/markdown": "^0.40.0",
"@lexical/react": "^0.40.0",
"@lexical/rich-text": "^0.40.0",
"@lexical/selection": "^0.40.0",
"@lexical/table": "^0.40.0",
"@lexical/utils": "^0.40.0",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.25.0",
"ai": "^4.3.2",
"babel-plugin-react-compiler": "^1.0.0",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"embla-carousel-react": "^8.5.2",
"lexical": "^0.40.0",
"mongodb": "^7.0.0",
"next": "15.3.6",
"next-auth": "^4.24.11",
"react": "19",
"react-dom": "19",
"sonner": "^2.0.7",
"zod": "^4.0.0"
},
"devDependencies": {
"@bundle-stats/plugin-webpack-filter": "^4.19.1",
"@next/bundle-analyzer": "^15.3.0",
"@next/eslint-plugin-next": "^15.3.0",
"@playwright/test": "^1.58.2",
"@storybook/addon-docs": "^10.0.0",
"@storybook/addon-onboarding": "^10.0.0",
"@storybook/nextjs": "^10.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/turndown": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"eslint-config-next": "^15.3.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "^10.0.0",
"husky": "9.1.7",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"msw": "^2.10.2",
"msw-storybook-addon": "^2.0.5",
"next-router-mock": "^1.0.0",
"node-mocks-http": "^1.17.2",
"prettier": "^3.2.5",
"renovate": "^42.0.0",
"storybook": "^10.0.0",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"undici": "^7.10.0",
"webpack-stats-plugin": "^1.1.3",
"whatwg-fetch": "^3.6.20"
}
}