-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "kikiding-chakra",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix \"**/*.{ts,tsx}\"",
"generate-ts-types": "graphql-codegen --config graphql.config.yml"
},
"dependencies": {
"@chakra-icons/bootstrap": "^1.2.0",
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/mali": "^4.5.5",
"@graphql-codegen/cli": "^2.16.1",
"@graphql-codegen/typed-document-node": "^2.3.10",
"@graphql-codegen/typescript": "^2.8.5",
"@graphql-codegen/typescript-operations": "^2.5.10",
"@graphql-typed-document-node/core": "^3.1.1",
"@skip-go/widget": "0.0.1-alpha.6",
"@vercel/og": "^0.5.17",
"chakra-ui-markdown-renderer": "^4.0.0",
"date-fns": "^2.28.0",
"framer-motion": "^6",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"next": "13.5.3",
"next-seo": "^5.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.3",
"react-twitter-widgets": "^1.10.0"
},
"devDependencies": {
"@graz-sh/style-guide": "4.1.0",
"@types/node": "^16",
"@types/react": "^18.2",
"@types/react-dom": "18.2",
"eslint": "^8.46.0",
"prettier": "^3.0.1",
"typescript": "^5"
},
"lint-staged": {
"**/*.{js,cjs,mjs,ts,tsx}": [
"eslint --fix"
]
},
"prettier": "@graz-sh/style-guide/prettier"
}