-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1013 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
{
"name": "menti-frontend-assessment",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cp data.json.default data.json && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"formik": "^2.2.9",
"lucide-react": "^0.91.0",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "^5.3.6",
"swr": "^1.3.0",
"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",
"@types/jest": "^29.1.1",
"@types/node": "18.7.23",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/styled-components": "^5.1.26",
"jest": "^29.1.2",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"jest-environment-jsdom": "^29.1.2",
"typescript": "4.8.4"
}
}