-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.19 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
{
"private": true,
"packageManager": "[email protected]",
"version": "0.0.0",
"engines": {
"node": ">=20.18.0"
},
"scripts": {
"prepare": "husky",
"dev": "next dev",
"build": "next build",
"start": "next start",
"fix": "concurrently \"npm:fix:*\"",
"fix:eslint": "npx eslint --fix",
"fix:stylelint": "npx stylelint --fix **/*.{css,scss}",
"fix:prettier": "npx prettier . --write --ignore-unknown",
"fix:clangformat": "find . -name '*.h' -o -name '*.c' -o -name '*.cpp' -print0 | xargs -0 npx clang-format -i",
"lint": "concurrently \"npm:lint:*\"",
"lint:eslint": "npx eslint",
"lint:stylelint": "npx stylelint **/*.{css,scss}",
"lint:prettier": "npx prettier . --check --ignore-unknown",
"lint:editorconfig": "npx editorconfig-checker -config .editorconfig-checker.json",
"lint:markdownlint": "npx markdownlint **/*.md",
"lint:textlint": "npx textlint -f pretty-error src/docs",
"lint:clangformat": "find . -name '*.h' -o -name '*.c' -o -name '*.cpp' -print0 | xargs -0 npx clang-format -n -Werror",
"count-docs": "ls -R src/posts/docs | grep .md | wc -l"
},
"dependencies": {
"@docsearch/css": "^3.9.0",
"@docsearch/react": "^3.9.0",
"@giscus/react": "^3.1.0",
"@next/third-parties": "^14.2.28",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"gray-matter": "^4.0.3",
"html-react-parser": "^5.2.3",
"katex": "^0.16.21",
"next": "^14.2.28",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"sharp": "^0.34.1"
},
"devDependencies": {
"@types/node": "^22.14.0",
"clang-format-git": "^1.3.3",
"concurrently": "^9.1.2",
"editorconfig-checker": "^6.0.1",
"eslint": "^9.24.0",
"eslint-config-bananass": "^0.0.7",
"eslint-plugin-mark": "^0.1.0-canary.3",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"markdownlint-cli": "^0.44.0",
"prettier": "^3.5.3",
"prettier-config-bananass": "^0.0.1",
"sass": "^1.86.3",
"stylelint": "^16.18.0",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"textlint": "^14.6.0",
"textlint-rule-allowed-uris": "^1.0.9"
}
}