-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 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
{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"lint-fix": "eslint '**/*.{ts,tsx}' --ext .ts, .tsx --fix",
"lint-staged": "lint-staged"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@tanstack/react-query": "4",
"@tanstack/react-query-devtools": "4",
"@types/node": "18.15.11",
"@types/react": "18.0.33",
"@types/react-dom": "18.0.11",
"axios": "^1.3.5",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"next": "13.3.0",
"react": "18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "18.2.0",
"react-draggable": "^4.4.6",
"react-error-boundary": "^4.0.13",
"react-icons": "^4.10.1",
"react-infinite-scroller": "^1.2.6",
"react-native-webview": "^13.8.1",
"react-slick": "^0.29.0",
"react-spinners": "^0.13.8",
"recoil": "^0.7.7",
"recoil-persist": "^5.1.0",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.9",
"typescript": "5.0.4"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@svgr/webpack": "^8.1.0",
"@types/react-infinite-scroller": "^1.2.5",
"@types/react-slick": "^0.23.10",
"@types/styled-components": "^5.1.26",
"babel-plugin-styled-components": "^2.1.4",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "2.8.7"
}
}