-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "chat-cli",
"version": "0.0.3",
"author": "Lorenzo Ponticelli aka Lorezz <[email protected]> (https://lorezz.me/)",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"dependencies": {
"@chakra-ui/core": "^1.0.0-rc.8",
"@hookform/resolvers": "^1.0.0",
"axios": "^0.21.0",
"framer-motion": "^2.9.4",
"jwt-decode": "^3.1.1",
"lodash": "^4.17.20",
"md5": "^2.3.0",
"moment": "^2.29.1",
"next": "^10.0.1",
"query-string": "^6.13.6",
"rc-progress": "^3.1.1",
"react": "16.13.1",
"react-copy-to-clipboard": "^5.0.2",
"react-device-detect": "^1.14.0",
"react-dom": "16.13.1",
"react-dropzone": "^11.2.4",
"react-hook-form": "^6.9.6",
"react-icons": "^3.11.0",
"socket.io-client": "^2.3.1",
"swr": "^0.3.8",
"yup": "^0.29.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0"
}
}