-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.12 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
{
"name": "@exactpro/docs-web-toolkit",
"version": "0.2.3",
"description": "Toolkit for creating docs from markdown. Created as Nuxt 3 layer.",
"main": "nuxt.config.ts",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/exactpro/docs-toolkit.git"
},
"bugs": {
"email": "docops@exactpro.com",
"url": "https://github.com/exactpro/docs-toolkit/issues"
},
"homepage": "https://exactpro.github.io/docs-toolkit",
"scripts": {
"prepare": "nuxi prepare && nuxi prepare docs",
"build": "nuxt build docs/",
"dev": "nuxt dev docs/",
"generate": "nuxt generate docs/",
"preview": "nuxt preview docs/",
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint:license": "license-check-and-add check",
"lint": "npm run lint:license && npm run lint:js && npm run lint:prettier",
"lintfix": "license-check-and-add add add && prettier --write --list-different . && eslint --fix --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"typecheck": "nuxi typecheck && nuxt typecheck docs/"
},
"author": {
"name": "Exactpro DocOps",
"email": "docops@exactpro.com"
},
"contributors": [
{
"name": "Nikolay Dorofeev",
"email": "dorich2000@gmail.com",
"url": "https://d0rich.me"
},
{
"name": "Harsha Dharmabandu",
"email": "enceladusorbit@gmail.com"
}
],
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^5.0.0",
"license-check-and-add": "^4.0.5",
"prettier": "^3.0.0",
"typescript": "^5.0.2",
"vue-tsc": "^1.2.0"
},
"dependencies": {
"@nuxt/content": "^2.5.2",
"@nuxtjs/tailwindcss": "^6.1.3",
"@tailwindcss/typography": "^0.5.8",
"@types/mermaid": "^9.2.0",
"nuxt": "^3.3.1",
"nuxt-icon": "^0.4.2",
"rehype-external-links": "^2.1.0",
"sitemap": "^7.1.1",
"vue-gtag-next": "^1.14.0"
}
}