-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "ia5_teamprojekt_flai",
"version": "1.0.0",
"description": "Repository for IA5-Teamprojekt Web-App (Group FLAI)",
"license": "MIT",
"scripts": {
"mdlint": "markdownlint \"./**/*.md\" --ignore ./**/node_modules/**/*.md",
"mdlint-fix": "markdownlint --fix \"./**/*.md\" --ignore ./**/node_modules/**/*.md"
},
"repository": {
"type": "git",
"url": "https://gitlab.multimedia.hs-augsburg.de/mokro/ia5_teamprojekt_flai.git"
},
"keywords": [
"vue",
"vite",
"express",
"postgres"
],
"contributors": [
"Stefanie Jany, Lea Jell, Martin Kohnle, Anja Krendlinger, Moritz Kronberger, Eva Kunzmann, Kieu Pham"
],
"devDependencies": {
"husky": "^4.3.8",
"lint-staged": "^12.0.2",
"markdownlint-cli": "^0.29.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.md": [
"markdownlint --fix \"./**/*.md\" --ignore ./**/node_modules/**/*.md",
"markdownlint \"./**/*.md\" --ignore ./**/node_modules/**/*.md"
]
}
}