forked from 128technology/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.84 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
{
"name": "128t-docs",
"version": "1.0.1",
"private": true,
"scripts": {
"start": "docusaurus start --host 0.0.0.0",
"start:offline": "OFFLINE_DOCS=1 docusaurus start --host 0.0.0.0",
"serve": "docusaurus serve",
"build": "docusaurus build",
"build:offline": "OFFLINE_DOCS=1 docusaurus build --out-dir=offline-docs",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"ci": "yarn lint && yarn prettier:diff",
"lint": "eslint --cache \"**/*.js\"",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,md}\"",
"prettier:diff": "prettier --config .prettierrc --list-different \"**/*.{js,md}\"",
"check-links": "blcl -rog ./build/"
},
"dependencies": {
"@docusaurus/core": "3.1.1",
"@docusaurus/preset-classic": "3.1.1",
"broken-link-checker-local": "^0.2.1",
"classnames": "^2.2.6",
"lunr": "^2.3.9",
"mermaid": "^10.4.0",
"@mdx-js/react": "^3.0.0",
"prism-react-renderer": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-simple-flowchart": "^1.2.4",
"react-table": "^7.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.1.1",
"@docusaurus/types": "3.1.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gray-matter": "^4.0.3",
"prettier": "^2.4.1"
},
"engines": {
"node": ">=18.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}