chore: add package.json

This commit is contained in:
Oliver Booth 2023-08-04 12:36:29 +01:00
parent a48fd2d625
commit 1279bfb82e
Signed by: oliverbooth
GPG Key ID: 725DB725A0D9EE61
3 changed files with 4174 additions and 0 deletions

View File

@ -5,6 +5,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{06B0C27F-3432-41D7-B103-47B8D0EE28CC}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{06B0C27F-3432-41D7-B103-47B8D0EE28CC}"
ProjectSection(SolutionItems) = preProject ProjectSection(SolutionItems) = preProject
README.md = README.md README.md = README.md
package.json = package.json
EndProjectSection EndProjectSection
EndProject EndProject
Global Global

4147
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

26
package.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "oliverbooth.dev",
"version": "1.0.0",
"description": "Source code for https://oliverbooth.dev",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.oliverbooth.dev/oliverbooth/oliverbooth.dev"
},
"keywords": [
"asp-net-core",
"csharp",
"dotnet",
"personal-website"
],
"author": "Oliver Booth",
"license": "MIT",
"devDependencies": {
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-sass": "^5.1.0"
}
}