-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.78 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
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
{
"name": "@kohlbacherlab/homepage",
"type": "module",
"private": true,
"version": "1.0.0",
"description": "This is a package for the KohlbacherLab website.",
"repository": {
"type": "git",
"url": "https://github.com/kohlbacherlab/homepage.git"
},
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"files": [
"dist/"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vitepress dev src --temp .temp",
"build": "vitepress build src --temp .temp",
"help": "vitepress --help",
"typecheck": "vue-tsc --noEmit -p tsconfig.app.json",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky"
},
"keywords": [
"docs"
],
"license": "MIT",
"devDependencies": {
"@tada5hi/eslint-config": "^2.0.2",
"@tada5hi/tsconfig": "^0.7.2",
"@types/node": "^24.7.0",
"@vuecs/link": "^1.0.0",
"@vuecs/preset-font-awesome": "^1.1.0",
"eslint": "^10.0.3",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-vue": "^10.8.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.57.1",
"vue-tsc": "^3.2.6"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.1.0",
"@retorquere/bibtex-parser": "^9.0.17",
"@vuecs/pagination": "^1.3.0",
"bootstrap": "^5.3.5",
"locter": "^2.1.6",
"smob": "^1.5.0",
"vite": "^8.0.1",
"vitepress": "^1.6.4"
},
"lint-staged": {
"*.{mjs,ts,vue}": "eslint --fix"
}
}