-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.04 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
66
67
68
{
"name": "studentsalary",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next-sitemap --config sitemap.config.js",
"sitemap": "next build && next export && next-sitemap --config sitemap.config.js",
"start": "next start",
"lint": "next lint --dir ./",
"lint:fix": "eslint ./ --ext .js,jsx,.ts,.tsx --fix",
"fmt": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json,css}'",
"prepare": "husky install",
"gen": "graphql-codegen --config codegen.yml"
},
"husky": {
"hooks": {
"pre-commit": "fmt"
}
},
"dependencies": {
"@apollo/client": "^3.4.3",
"@chakra-ui/icons": "^1.0.14",
"@chakra-ui/react": "^1.8.9",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^2.8.0",
"@material-ui/core": "^4.12.3",
"@material-ui/data-grid": "^4.0.0-alpha.35",
"@prisma/client": "^3.14.0",
"deepmerge": "^4.2.2",
"framer-motion": "^4.1.17",
"graphql": "^15.5.2",
"gray-matter": "^4.0.3",
"highlight.js": "^11.3.1",
"markdown-it": "^12.3.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"next": "^12.1.0",
"next-seo": "^4.28.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.12.2",
"react-share": "^4.4.0",
"recharts": "^2.0.10",
"swr": "^1.3.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.9.0",
"@graphql-codegen/introspection": "2.1.0",
"@graphql-codegen/typescript": "2.1.2",
"@graphql-codegen/typescript-operations": "2.1.2",
"@graphql-codegen/typescript-react-apollo": "3.1.2",
"@types/gtag.js": "^0.0.7",
"@types/node": "^16.9.1",
"@types/react": "^17.0.21",
"eslint": "^7.32.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-unused-imports": "^1.1.4",
"husky": "^7.0.0",
"next-sitemap": "^1.6.168",
"prettier": "^2.3.2",
"prisma": "^3.14.0",
"typescript": "^4.4.3"
}
}