Skip to content

Commit 7d1abae

Browse files
committed
init template
0 parents  commit 7d1abae

File tree

5 files changed

+864
-0
lines changed

5 files changed

+864
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

package.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "node-typescript",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"type": "module",
7+
"scripts": {
8+
"lint": "eslint . --ext .ts --fix",
9+
"build": "tsc",
10+
"start": "nodemon src/index.ts",
11+
"dev": "nodemon src/index.ts"
12+
},
13+
"keywords": [],
14+
"author": "",
15+
"license": "ISC",
16+
"dependencies": {
17+
"express": "^4.18.2"
18+
},
19+
"devDependencies": {
20+
"@types/express": "^4.17.17",
21+
"@types/node": "^18.13.0",
22+
"nodemon": "^2.0.20",
23+
"ts-node": "^10.9.1",
24+
"typescript": "^4.9.5"
25+
}
26+
}

0 commit comments

Comments
 (0)