-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 855 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "typescript-starter-template",
"version": "1.0.0",
"description": "A typescript starter template for nodejs applications.",
"keywords": [
"template"
],
"author": {
"name": "Oliver Rademaker",
"email": "[email protected]",
"url": "https://github.com/kyromoto"
},
"homepage": "https://github.com/kyromoto/typescript-starter-template#readme",
"license": "MIT",
"private": true,
"main": "build/app.ts",
"types": "build/index.d.ts",
"scripts": {
"start": "tsc && node dist/app.js"
},
"dependencies": {},
"devDependencies": {
"tslint": "6.1.3",
"typescript": "4.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyromoto/typescript-starter-template.git"
},
"bugs": {
"url": "https://github.com/kyromoto/typescript-starter-template/issues"
}
}