-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 901 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
{
"name": "typecript-node-starter",
"version": "1.0.0",
"description": "A node/typescript starter with Live-reloading, absolute path imports and incremental compilation built-in",
"main": "index.js",
"scripts": {
"dev": "tsc-watch --onSuccess \"node dist/main.js\"",
"build": "tsc",
"start": "node dist/main.js"
},
"_moduleAliases": {
"@server": "dist/server",
"@common": "dist/common"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binura-g/typecript-node-starter.git"
},
"author": "Binura Gunasekara",
"homepage": "https://bgxcode.com/posts/typescript/ts-absolute-import-paths",
"devDependencies": {
"tsc-watch": "^4.2.8",
"typescript": "^3.9.5"
},
"dependencies": {
"module-alias": "^2.2.2",
"source-map-support": "^0.5.19"
}
}