-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.77 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": "go-memo-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 4000",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"tsc": "tsc --noEmit",
"gh-deploy": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && git add -f out/ && git checkout -b temp-for-deploy-gh-pages && git commit -m \"Deploy Next.js to gh-pages\" && git subtree split --prefix out -b gh-pages && git push -f origin gh-pages:gh-pages && git branch -D gh-pages && git checkout main && git branch -D temp-for-deploy-gh-pages"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.12",
"@tanstack/react-query": "^4.16.1",
"axios": "^1.1.3",
"dayjs": "^1.11.6",
"go-storybook": "^0.1.17",
"immer": "^9.0.16",
"moment-mini": "^2.29.4",
"next": "12.3.1",
"open-color": "^1.9.1",
"pretendard": "^1.3.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"use-deep-compare-effect": "^1.8.1",
"zustand": "^4.1.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.0.7",
"@types/node": "18.11.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.26.0",
"eslint-config-next": "12.3.1",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^4.0.0",
"typescript": "^4.8.4"
},
"resolutions": {
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9"
}
}