-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.83 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
{
"name": "recog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write \"{src,pages}/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint \"{src,pages}/**/*.{js,jsx,ts,tsx}\" --fix",
"codegen": "apollo client:codegen src/generated/graphql/api.d.ts --target typescript --outputFlat --useReadOnlyTypes",
"codegen:watch": "yarn codegen --watch"
},
"dependencies": {
"@apollo/client": "^3.3.11",
"@chakra-ui/react": "^1.3.4",
"@chakra-ui/theme-tools": "^1.1.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@hookform/resolvers": "1.3.0",
"autoprefixer": "^10.2.3",
"clsx": "^1.1.1",
"framer-motion": "^3.10.2",
"graphql": "^15.5.0",
"highlight.js": "^10.5.0",
"next": "10.0.5",
"next-auth": "^3.13.3",
"quill": "^1.3.7",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "^6.15.4",
"react-icons": "^4.1.0",
"react-markdown": "^5.0.3",
"react-quill": "^1.3.5",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/next-auth": "^3.13.0",
"@types/node": "^14.14.22",
"@types/quill": "^2.0.5",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"apollo": "^2.33.4",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"react-lorem-ipsum": "^1.4.9",
"typescript": "^4.1.3"
}
}