-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.53 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
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
{
"name": "weather-app-and-store",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tsc": "tsc",
"test": "jest --runInBand"
},
"dependencies": {
"@types/node": "20.9.0",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"eslint": "8.53.0",
"eslint-config-next": "13.2.3",
"next": "13.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.5",
"yup": "0.32.9",
"@emotion/react": "11.11.0",
"@emotion/styled": "11.11.0",
"@hookform/resolvers": "2.8.8",
"@mui/icons-material": "5.11.0",
"@mui/material": "5.14.2",
"@mui/x-data-grid": "6.10.0",
"@mui/x-date-pickers": "6.10.0",
"moment": "2.29.4",
"react-dropzone": "12.0.5",
"react-hook-form": "7.29.0",
"@reduxjs/toolkit": "1.4.0",
"axios": "0.19.2",
"react-redux": "8.0.2",
"react-router-dom": "6.3.0",
"redux-persist": "6.0.0",
"redux-saga": "1.1.3"
},
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"devDependencies": {
"@types/jest": "29.4.0",
"custom-env": "2.0.1",
"env-cmd": "10.1.0",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"husky": "4.2.5",
"jest": "29.4.1",
"lint-staged": "10.2.11",
"node-mocks-http": "1.11.0",
"prettier": "2.7.1",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"ts-transform-paths": "3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}