This repository has been archived by the owner on Apr 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.61 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
{
"name": "losenone-pages",
"version": "1.0.0",
"description": "Losenone Minecraft Server",
"repository": "[email protected]:lose-af/losenone-pages.git",
"author": "Losenone",
"license": "MIT",
"private": false,
"main": "index.js",
"scripts": {
"pages:dev": "vuepress dev pages",
"pages:build": "vuepress build pages",
"lint:check": "prettier --check . && eslint . --ext .js,.ts,.vue,.html && markdownlint-cli2 \"pages/**/*.md\" && lint-md \"pages/**/*.md\"",
"lint:fix": "prettier --write . && eslint . --fix --ext .js,.ts,.vue,.html && markdownlint-cli2-fix \"pages/**/*.md\" && lint-md \"pages/**/*.md\" --fix",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"eslint:check": "eslint . --ext .js,.ts,.vue,.html",
"eslint:fix": "eslint . --fix --ext .js,.ts,.vue,.html",
"mdlint:check": "markdownlint-cli2 \"pages/**/*.md\"",
"mdlint:fix": "markdownlint-cli2-fix \"pages/**/*.md\"",
"lint-md:check": "lint-md \"pages/**/*.md\"",
"lint-md:fix": "lint-md \"pages/**/*.md\" --fix"
},
"devDependencies": {
"@lint-md/cli": "^0.1.5",
"autoprefixer": "^10.3.1",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.13.0",
"markdownlint-cli2": "^0.2.0",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"prettier": "2.3.2",
"tailwindcss": "^2.2.7",
"vuepress-vite": "^2.0.0-beta.20"
},
"dependencies": {
"@vuepress/plugin-docsearch": "^2.0.0-beta.22"
}
}