-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:ci": "jest --ci"
},
"dependencies": {
"axios": "^1.3.2",
"mongodb": "^5.0.1",
"next": "latest",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-query": "^3.39.3",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/user-event": "14.2.0",
"@types/node": "18.11.19",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.10",
"@types/styled-components": "^5.1.26",
"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"prettier": "^2.8.3",
"typescript": "4.6.4"
}
}