-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 KB
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
{
"private": true,
"name": "@graphql-utils/docs",
"version": "1.0.0",
"description": "Documentation for graphql-utils",
"author": "Mohammad Ataei",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/graphql-utils/docs"
},
"bugs": {
"url": "https://github.com/graphql-utils/docs/issues"
},
"scripts": {
"dev": "vitepress dev docs",
"build": "vitepress build docs",
"serve": "vitepress serve docs",
"format": "prettier --write . && pnpm lint --fix",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "2.7.1",
"typescript": "^4.9.5",
"vite": "^3.2.7",
"vitepress": "1.0.0-alpha.26",
"vue": "^3.3.4"
},
"packageManager": "pnpm@8.6.12"
}