-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 KB
/
package.json
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
{
"name": "nextjs-task-management-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development next dev",
"build": "next build",
"start": "cross-env NODE_ENV=production next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fontsource/inter": "^5.0.17",
"@hookform/resolvers": "^3.4.2",
"@iconscout/react-unicons": "^2.0.2",
"@mui/joy": "^5.0.0-beta.32",
"@types/uuid": "^9.0.8",
"effector": "^23.2.0",
"effector-react": "^23.2.0",
"effector-storage": "^7.1.0",
"next": "14.1.4",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.2",
"uuid": "^9.0.1",
"yup": "^1.4.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"typescript": "^5"
}
}