-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.21 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.21 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
{
"name": "paperback-website",
"description": "The official website for Paperback.",
"private": true,
"type": "module",
"scripts": {
"dev": "vitepress dev src --host",
"build": "vitepress build src",
"preview": "vitepress preview src",
"vue-tsc": "vue-tsc --noEmit",
"eslint-check": "eslint",
"eslint-write": "eslint --fix",
"prettier-check": "prettier --config .prettierrc.js --check '**/*{.md,.yaml,.json,.vue,.js,.ts}'",
"prettier-write": "prettier --config .prettierrc.js --write '**/*{.md,.yaml,.json,.vue,.js,.ts}'",
"test": "npm run vue-tsc && npm run eslint-check && npm run prettier-check && npm run build",
"lint-staged": "lint-staged --config .lintstagedrc.cjs --concurrent false",
"prepare": "husky"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/js": "^9.21.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.13.8",
"eslint": "^9.21.0",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.25.0",
"vitepress": "^1.6.3",
"vitepress-plugin-tabs": "^0.6.0",
"vue": "^3.5.13",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.2.8"
}
}