forked from Consensys/doc.linea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.66 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
112
113
114
115
116
{
"name": "doc.linea",
"version": "3.1.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"prebuild": "node scripts/generateSocialCard.js",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"typecheck-staged": "tsc-files --noEmit",
"lint": "npm run lint:spelling && npm run lint:js && npm run lint:style",
"lint:js": "eslint",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:spelling": "cspell \"**\" --no-progress",
"lint:style": "stylelint \"**/*.css\"",
"lint:style:fix": "npm run lint:style -- --fix",
"format": "prettier --write \"{blog,docs,src,static}/(**/*).{md,mdx,ts,js,tsx,jsx,json}\""
},
"lint-staged": {
"src/**/*.{ts,js,jsx,tsx}": "npm run lint:fix",
"**/*.{ts,tsx}": "npm run typecheck-staged",
"**/*.css": "npm run lint:style",
"**/*.{md,mdx}": "npm run lint:spelling",
"**/*.{md,mdx,ts,js,tsx,jsx,json}": "npm run format"
},
"dependencies": {
"@docusaurus/core": "^3.4.0",
"@docusaurus/plugin-client-redirects": "^3.4.0",
"@docusaurus/plugin-google-gtag": "^3.4.0",
"@docusaurus/plugin-google-tag-manager": "^3.4.0",
"@docusaurus/preset-classic": "^3.4.0",
"@docusaurus/theme-mermaid": "^3.5.2",
"@easyops-cn/docusaurus-search-local": "^0.44.3",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"hast-util-is-element": "^3.0.0",
"postcss-safe-parser": "^7.0.0",
"prism-react-renderer": "^1.3.5",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-player": "^2.12.0",
"rehype-katex": "^7.0.0",
"remark-docusaurus-tabs": "^0.2.0",
"remark-math": "^6.0.0",
"sharp": "^0.33.5",
"typescript-eslint": "^8.3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4",
"@commitlint/config-conventional": "^19.4",
"@docusaurus/module-type-aliases": "^3.4.0",
"@docusaurus/tsconfig": "^3.4.0",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.7",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"cspell": "^8.14.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"globals": "^15.9.0",
"lint-staged": "^15.2.9",
"prettier": "3.3.3",
"semantic-release": "^24.1.0",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"tsc-files": "^1.1.3",
"typescript": "^5.0.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": "20.x"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}