gitignore & package.json

This commit is contained in:
Ulf Gebhardt 2023-01-03 00:59:43 +01:00
parent 206b3f7424
commit de1527b492
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
3 changed files with 27064 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/node_modules/

27038
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

25
package.json Normal file
View File

@ -0,0 +1,25 @@
{
"name": "it4c.dev",
"version": "1.0.0",
"description": "The IT4C.dev website",
"main": "index.js",
"scripts": {
"build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build docs",
"dev": "NODE_OPTIONS=--openssl-legacy-provider vuepress dev docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IT4Change/IT4C.dev.git"
},
"author": "Ulf Gebhardt",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/IT4Change/IT4C.dev/issues"
},
"homepage": "https://github.com/IT4Change/IT4C.dev#readme",
"devDependencies": {
"vuepress": "^1.9.7",
"vuepress-theme-book": "^0.0.9"
}
}