-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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
59
60
61
62
63
64
65
{
"name": "realworld-with-next",
"version": "0.0.0",
"description": "RealWorld 앱 구현하기 with Next.js",
"author": {
"name": "InSeong-So",
"email": "[email protected]",
"url": "https://github.com/inseong-so"
},
"devEngines": {
"node": "16.x || 18.x || 19.x || 20.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pagers-org/realworld-with-next.git"
},
"keywords": [
"realworld",
"next",
"webview",
"pagers"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pagers-org/realworld-with-next/issues"
},
"homepage": "https://github.com/pagers-org/realworld-with-next#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@tanstack/react-query": "^4.29.12",
"axios": "^1.4.0",
"cookies-next": "^2.1.2",
"lazysizes": "^5.3.2",
"next": "latest",
"react": "latest",
"react-dom": "latest",
"zustand": "^4.3.8"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.5",
"@tanstack/eslint-plugin-query": "^4.29.9",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^20.3.0",
"@types/react": "18.2.12",
"@types/react-dom": "^18.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "8.42.0",
"eslint-config-next": "latest",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.8",
"react-markdown": "^8.0.7",
"rehype-raw": "^6.1.1",
"typescript": "^5.1.3"
}
}