-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 960 Bytes
/
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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"lint": "next lint"
},
"dependencies": {
"antd": "^5.1.7",
"axios": "^1.3.0",
"formik": "^2.2.9",
"lodash": "^4.17.21",
"next": "latest",
"next-redux-wrapper": "^8.1.0",
"ramda": "^0.28.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-redux": "^8.0.5",
"redux": "^4.2.1",
"redux-logic": "^3.0.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"eslint": "^8.33.0",
"eslint-config-next": "^13.1.6",
"eslint-plugin-testing-library": "^5.10.0",
"jest": "29.4.1",
"jest-environment-jsdom": "29.4.1",
"next-router-mock": "^0.9.1",
"redux-devtools-extension": "^2.13.9"
}
}