Skip to content

Commit 79d9d72

Browse files

10 files changed

+2227
-0
lines changed

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
### IntelliJ IDEA ###
2+
out/
3+
!**/src/main/**/out/
4+
!**/src/test/**/out/
5+
.idea/
6+
*.iml
7+
8+
### VS Code ###
9+
.vscode/
10+
11+
### Mac OS ###
12+
.DS_Store
13+
14+
node_modules/**
15+
build/**
16+
dist/**

nodemon.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"watch": ["src"],
3+
"ext": "ts",
4+
"ignore": ["src/**/*.spec.ts"],
5+
"exec": "ts-node ./src/index.ts"
6+
}

package.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"type": "module",
3+
"scripts": {
4+
"build": "tsc",
5+
"start": "nodemon",
6+
"dev": "nodemon --exec node --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts"
7+
},
8+
"dependencies": {
9+
"express": "^4.18.3"
10+
},
11+
"devDependencies": {
12+
"@types/express": "^4.17.21",
13+
"@types/node": "^20.11.28",
14+
"html-webpack-plugin": "^5.6.0",
15+
"nodemon": "^3.1.0",
16+
"path": "^0.12.7",
17+
"ts-loader": "^9.5.1",
18+
"ts-node": "^10.9.2",
19+
"typescript": "^5.4.2",
20+
"url": "^0.11.3",
21+
"webpack": "^5.90.3",
22+
"webpack-cli": "^5.1.4"
23+
}
24+
}

0 commit comments

Comments
 (0)