-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "pixabay-seacher",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier ./ --write",
"lint": "eslint . --cache --fix",
"prepare": "husky install",
"start": "next start",
"test": "jest --watch -i"
},
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.4.3",
"@reduxjs/toolkit": "^1.7.2",
"axios": "^0.26.0",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.6"
},
"devDependencies": {
"@swc/core": "^1.2.144",
"@swc/jest": "^0.2.17",
"@types/jest": "^27.4.1",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"msw": "^0.38.1",
"prettier": "^2.5.1",
"sort-package-json": "^1.54.0",
"typescript": "4.5.5"
},
"msw": {
"workerDirectory": "public"
}
}