-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.82 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
{
"private": true,
"type": "module",
"scripts": {
"build": "npm run prebuild; next build",
"prebuild": "node ./scripts/prebuild.js",
"start": "npm run prebuild; next dev",
"lint": "xo --fix",
"test": "echo nothing to test here"
},
"dependencies": {
"@code-hike/mdx": "^0.7.4-next.2",
"@fontsource/open-sans": "^4.5.13",
"@mdx-js/loader": "^2.1.5",
"@monaco-editor/react": "^4.4.5",
"@next/mdx": "^13.0.4",
"github-markdown-css": "^5.1.0",
"lodash": "^4.17.21",
"next": "13.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"uinix-theme-spec": "^1.1.0",
"uinix-ui": "uinix-js/uinix-ui",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"xo": "^0.53.0"
},
"prettier": {
"bracketSpacing": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"xo": {
"esnext": false,
"env": [
"browser"
],
"extends": [
"xo-react"
],
"prettier": true,
"rules": {
"import/no-anonymous-default-export": "off",
"import/no-unassigned-import": "off",
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_"
}
],
"react/no-array-index-key": "off",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"unicorn/no-array-callback-reference": "off"
},
"overrides": [
{
"files": [
"next.config.js"
],
"rules": {
"unicorn/prefer-module": "off"
}
}
]
}
}