-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.07 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
{
"name": "docs",
"description": "All documentations of EternalCodeTeam Projects & Tutorials",
"type": "module",
"repository": "https://github.com/EternalCodeTeam/docs",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:serve": "vitepress serve docs",
"lint:js": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "pnpm run lint:js && pnpm run lint:prettier",
"lintfix": "prettier --write --list-different . && pnpm run lint:js --fix"
},
"license": "GPL-3.0",
"devDependencies": {
"prettier": "3.2.5",
"vitepress": "1.1.3",
"vitepress-plugin-search": "1.0.4-alpha.22",
"vue": "3.4.23"
},
"dependencies": {
"@typescript-eslint/parser": "^7.0.0",
"axios": "^1.5.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"minisearch": "^6.1.0",
"vue-eslint-parser": "^9.3.1",
"vue-toast-notification": "^3.1.1"
}
}