typescript-template/package.json

18 lines
438 B
JSON
Raw Permalink Normal View History

2023-03-30 11:50:32 +07:00
{
"name": "a",
"packageManager": "yarn@3.4.1",
2023-03-30 12:05:40 +07:00
"type": "module",
2023-03-30 11:50:32 +07:00
"scripts": {
2023-03-30 12:05:40 +07:00
"start": "node --experimental-specifier-resolution=node dist/index.js",
2023-03-30 11:50:32 +07:00
"build": "tsc && tsc-alias",
"build:watch": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")"
},
"dependencies": {
"@types/node": "^18.15.11",
"concurrently": "^8.0.1",
"moment": "^2.29.4",
"tsc-alias": "^1.8.5",
"typescript": "^5.0.2"
}
}