typescript-template/package.json
2023-03-30 12:05:40 +07:00

18 lines
438 B
JSON

{
"name": "a",
"packageManager": "yarn@3.4.1",
"type": "module",
"scripts": {
"start": "node --experimental-specifier-resolution=node dist/index.js",
"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"
}
}