-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "homelike",
"version": "1.0.0",
"author": "Jessica Ribeiro",
"private": true,
"main": "index.js",
"description": "Homelike challenge",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch"
},
"dependencies": {
"@apollo/client": "^3.7.5",
"@apollo/link-error": "*",
"@apollo/react-testing": "^4.0.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@next/font": "13.1.6",
"@testing-library/user-event": "^14.4.3",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"apollo-link": "^1.2.14",
"apollo-link-error": "^1.1.13",
"apollo-upload-client": "^14.1.3",
"dotenv": "^16.0.3",
"eslint-config-next": "13.1.6",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "13.1.6",
"prettier": "^2.8.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"ts-jest": "^29.0.5",
"typescript": "4.9.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/apollo-upload-client": "^17.0.2",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/styled-components": "^5.1.26",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"styled-components": "^5.3.6"
}
}