Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfiwtz committed Mar 17, 2024
0 parents commit 79d9d72
Show file tree
Hide file tree
Showing 10 changed files with 2,227 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitignore
@@ -0,0 +1,16 @@
### IntelliJ IDEA ###
out/
!**/src/main/**/out/
!**/src/test/**/out/
.idea/
*.iml

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store

node_modules/**
build/**
dist/**
6 changes: 6 additions & 0 deletions nodemon.json
@@ -0,0 +1,6 @@
{
"watch": ["src"],
"ext": "ts",
"ignore": ["src/**/*.spec.ts"],
"exec": "ts-node ./src/index.ts"
}
24 changes: 24 additions & 0 deletions package.json
@@ -0,0 +1,24 @@
{
"type": "module",
"scripts": {
"build": "tsc",
"start": "nodemon",
"dev": "nodemon --exec node --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts"
},
"dependencies": {
"express": "^4.18.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.28",
"html-webpack-plugin": "^5.6.0",
"nodemon": "^3.1.0",
"path": "^0.12.7",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"url": "^0.11.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
}
}

0 comments on commit 79d9d72

Please sign in to comment.