-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.63 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.63 KB
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
59
60
61
{
"name": "frimo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"typecheck": "tsc --noEmit",
"lint": "next lint --fix"
},
"dependencies": {
"@emotion/cache": "^11.10.7",
"@emotion/is-prop-valid": "^1.2.0",
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.2",
"@opentranslate/google": "^1.4.2",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-query-devtools": "^4.29.5",
"lodash": "^4.17.21",
"next": "^13.3.1",
"next-seo": "^6.0.0",
"nookies": "^2.5.2",
"nprogress": "^0.2.0",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-full-screen": "^1.1.1",
"react-hotkeys": "^2.0.0",
"react-infinite-scroll-hook": "^4.1.1",
"react-query": "^4.0.0",
"stylis-plugin-rtl": "^2.1.1",
"swiper": "^9.2.4"
},
"devDependencies": {
"@types/lodash": "^4.14.194",
"@types/node": "^18.16.1",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.2.0",
"@types/stylis": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint"
]
}
}