-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.26 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
{
"name": "Cirun-docs",
"version": "0.0.1",
"description": "The main documentation website for Cirun.io",
"private": true,
"author": {
"name": "AktechLabs",
"url": "https://cirun.io"
},
"repository": {
"type": "git",
"url": "https://github.com/AktechLabs/cirun-docs"
},
"bugs": {
"url": "https://github.com/AktechLabs/cirun-docs"
},
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"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",
"lint": "eslint \"*.{js,jsx,css,scss}\"",
"lint:fix": "yarn run lint -- --fix",
"format": "prettier --check \"**/*.{md, mdx, json, toml}\"",
"format:fix": "prettier --write \"**/*.{md, mdx, json, toml}\"",
"prepare": "cd .. && husky install docs/.husky",
"lint-staged": "lint-staged"
},
"lint-staged": {
"**/*.{js,jsx,css}": [
"yarn run lint:fix"
],
"**/*.{json,md,mdx,toml}": [
"yarn run format:fix"
]
},
"dependencies": {
"@docusaurus/core": "2.4.1",
"@docusaurus/preset-classic": "2.4.1",
"@mdx-js/react": "^1.6.22",
"clsx": "^1.1.1",
"docusaurus-lunr-search": "2.1.15",
"docusaurus-plugin-sass": "^0.2.2",
"posthog-docusaurus": "^2.0.0",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.52.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@docusaurus/module-type-aliases": "2.0.0-beta.20",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"netlify-plugin-cache": "^1.0.3",
"prettier": "^2.6.2"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}