-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "rea",
"private": true,
"description": "Personal blog theme developed based on VitePress.",
"license": "MIT",
"type": "module",
"author": {
"name": "aiktb",
"email": "[email protected]",
"url": "https://aiktb.dev"
},
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/aiktb/Rea#readme",
"bugs": {
"url": "https://github.com/aiktb/Rea/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aiktb/Rea.git"
},
"scripts": {
"dev": "vitepress dev docs",
"build": "vitepress build docs",
"preview": "vitepress preview docs --port 8080",
"prepare": "husky install",
"format": "prettier --check --write .",
"lint": "eslint --ignore-path .eslintignore docs/.vitepress/**/*.{vue,ts} --fix",
"type-check": "tsc --noEmit && vue-tsc --noEmit"
},
"dependencies": {
"@iconify/vue": "^4.1.1",
"feed": "^4.2.2",
"lodash-es": "^4.17.21",
"tailwindcss": "^3.4.0",
"vitepress": "1.0.0-rc.34",
"vue": "^3.4.3"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.32",
"prettier": "3.1.1",
"prettier-plugin-tailwindcss": "^0.5.10",
"typescript": "^5.3.3",
"vue-tsc": "^1.8.27"
}
}