This repository has been archived by the owner on Sep 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "yarn run sitemap",
"sitemap": "next-sitemap",
"start": "next start",
"start:production": "NODE_ENV=production yarn run start",
"codegen": "graphql-codegen",
"lint": "next lint"
},
"dependencies": {
"@kichiyaki/roboto": "^1.0.0",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@sentry/nextjs": "6.18.2",
"clsx": "^1.1.1",
"date-fns": "^2.19.0",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"lodash": "^4.17.21",
"next": "12.1.0",
"next-plausible": "^3.1.4",
"next-sitemap": "^1.6.25",
"polish-plurals": "^1.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-use": "^17.2.1",
"sharp": "^0.29.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.0.0",
"@graphql-codegen/typescript": "^2.0.0",
"@graphql-codegen/typescript-operations": "^2.0.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "^7.5.0",
"eslint-config-next": "^12.1.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}