-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
package.json
File metadata and controls
53 lines (53 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
{
"name": "toycommunity",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build && next export",
"predeploy": "NODE_ENV=production yarn build ",
"deploy": "touch out/.nojekyll && gh-pages -d out --dotfiles",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}'"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@hookform/resolvers": "^3.1.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.11.16",
"@tanstack/react-query": "^.28.0",
"@types/node": "18.15.11",
"@types/react": "18.0.31",
"@types/react-dom": "18.0.11",
"@uiw/react-md-editor": "3.6.0",
"axios": "^1.3.5",
"dayjs": "^1.11.7",
"eslint": "^8.39.0",
"eslint-config-next": "13.2.4",
"gh-pages": "^5.0.0",
"next": "13.2.4",
"next-auth": "^4.22.1",
"next-remove-imports": "^1.0.11",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-infinite-scroll-component": "^6.1.0",
"recoil": "^0.7.7",
"typescript": "*",
"yup": "^1.1.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.3.2",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0"
},
"homepage": "https://toyCommunity.github.io/frontend/"
}