-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.57 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
{
"name": "@intlify/blog",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">= 18"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "^20.6.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.17.0",
"lint-staged": "^14.0.0",
"gravatar-url": "^3.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"feed": "^4.2.1",
"gray-matter": "^4.0.2",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vitepress": "^1.0.0-rc.20",
"vue": "^3.3.4"
},
"scripts": {
"build": "vitepress build",
"dev": "vitepress",
"preview": "vitepress preview",
"test": "pnpm lint",
"fix": "npm-run-all --parallel lint:fix format:fix",
"format": "prettier --config .prettierrc --ignore-path .prettierignore '**/*.{ts,js,json,html}'",
"format:fix": "pnpm format --write",
"lint": "npm-run-all --parallel lint:eslint",
"lint:eslint": "eslint .vitepress --ext .ts,.js,.vue --config .eslintrc.cjs",
"lint:fix": "pnpm lint --fix"
},
"lint-staged": {
"*.{json,md,yml}": [
"prettier --write"
],
"*.{js,vue}": [
"prettier --write",
"eslint --fix --ext .js,.vue"
],
"*.ts?(x)": [
"prettier --parser=typescript --write",
"eslint --fix --ext .ts"
]
}
}