-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.52 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "brainbench",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint \".//**/*.{ts,tsx}\"",
"fix": "eslint \".//**/*.{ts,tsx}\" --fix"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.4.19",
"@types/lodash": "^4.14.202",
"@types/mdx": "^2.0.7",
"@types/node": "20.5.9",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@vercel/analytics": "^1.1.3",
"bytes": "^3.1.2",
"date-fns": "^2.30.0",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"framer-motion": "^10.16.4",
"highlight.js": "^11.9.0",
"lodash": "^4.17.21",
"next": "13.4.19",
"posthog-js": "^1.79.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"recharts": "^2.11.0",
"rehype-highlight": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark": "^14.0.3",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.2",
"typescript": "5.2.2"
},
"eslintConfig": {
"root": true,
"extends": [
"next",
"next/core-web-vitals"
],
"plugins": [
"@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"rules": {
"react/prop-types": [
2,
{
"skipUndeclared": true
}
],
"react/jsx-handler-names": "off",
"quotes": "off",
"jsx-quotes": [
2,
"prefer-single"
],
"comma-dangle": [
2,
"always-multiline"
],
"object-curly-spacing": [
2,
"always"
],
"react/display-name": 0,
"semi": [
"error",
"never"
],
"no-underscore-dangle": 0,
"space-before-function-paren": 0,
"arrow-body-style": 0,
"no-use-before-define": 0,
"arrow-parens": 0,
"no-trailing-spaces": "error",
"@typescript-eslint/quotes": [
"error",
"single"
],
"@typescript-eslint/indent": [
"error",
2
],
"keyword-spacing": "error",
"key-spacing": [
"error",
{
"mode": "strict"
}
]
}
},
"devDependencies": {
"@types/bytes": "^3.1.2",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3"
}
}