-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "@exlint.io/docs",
"version": "0.0.0",
"description": "Exlint Docs",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"husky:install": "husky install",
"git:config": "git config --local include.path ../.gitconfig",
"setdev": "run-p husky:install git:config",
"onboarding": "node ./scripts/onboarding.cjs",
"prepare": "is-ci || run-s setdev onboarding",
"start": "docusaurus start",
"build": "docusaurus build",
"serve": "docusaurus serve",
"depcheck": "depcheck --config ./.depcheckrc.json",
"prettier": "prettier --check **/*.{ts,js,cjs,json,yaml}",
"inflint": "inflint -c ./inflint.config.ts"
},
"dependencies": {
"@commitlint/cli": "^17.0.2",
"@docusaurus/core": "2.0.0-beta.21",
"@docusaurus/plugin-google-gtag": "2.3.1",
"@docusaurus/plugin-sitemap": "2.3.1",
"@mdx-js/react": "1.6.22",
"commitizen": "^4.2.4",
"cz-vinyl": "^1.3.2",
"docusaurus-plugin-image-zoom": "0.1.1",
"prism-react-renderer": "^1.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@docusaurus/plugin-content-docs": "2.0.0-beta.21",
"@docusaurus/preset-classic": "2.0.0-beta.21",
"@exlint.io/inflint": "^1.2.7",
"chalk": "4.1.2",
"depcheck": "1.4.3",
"figlet": "^1.5.2",
"husky": "8.0.1",
"is-ci": "^3.0.1",
"lint-staged": "12.4.1",
"npm-run-all": "^4.1.5",
"prettier": "2.6.2"
}
}