-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "@pureskillgg/docs",
"version": "0.8.0",
"description": "PureSkill.gg community documentation.",
"main": "index.js",
"keywords": [
"node"
],
"homepage": "https://github.com/pureskillgg/docs",
"bugs": "https://github.com/pureskillgg/docs/issues",
"repository": "pureskillgg/docs",
"license": "MIT",
"author": {
"name": "PureSkill.gg",
"email": "[email protected]"
},
"files": [
"package-lock.json",
"index.js",
"lib"
],
"scripts": {
"start": "docusaurus start",
"build": "docusaurus build",
"prebuild": "docusaurus clear",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"lint": "prettier --check --ignore-path .gitignore '**/*.(js|cjs|mjs|json|yml|yaml|graphql)'",
"postlint": "prettier --check --ignore-path .gitignore 'docs/**/*.(md)'",
"preversion": "npm-run-all --parallel lint build",
"postversion": "git push --follow-tags",
"format": "prettier --write --ignore-path .gitignore '**/*.(js|cjs|mjs|json|yml|yaml|graphql)'",
"postformat": "prettier --write --ignore-path .gitignore 'docs/**/*.(md)'"
},
"engines": {
"node": ">=14.15.0",
"npm": ">= 8.1.0"
},
"overrides": {
"@docusaurus/core": {
".": "$@docusaurus/core"
}
},
"devDependencies": {
"@docusaurus/core": "^2.0.0-beta.20",
"@docusaurus/preset-classic": "^2.0.0-beta.20",
"npm-run-all": "^4.1.2",
"posthog-docusaurus": "^1.0.3",
"prettier": "^2.3.0"
}
}