-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 997 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": "starter-typescript",
"version": "1.0.0",
"description": "This repository is a starter for setting up Typescript. It provides the basic configuration and tools to write and run TypeScript code in a simple and efficient way.",
"author": {
"name": "Size Up",
"email": "[email protected]",
"url": "https://docs.sizeup.cloud"
},
"contributors": [
{
"name": "Anthony Pillot",
"email": "[email protected]",
"url": "https://anthonypillot.com"
}
],
"license": "MIT",
"private": true,
"main": "src/main.ts",
"scripts": {
"clean": "rm -rf dist",
"dev": "node --watch --require tsconfig-paths/register --require ts-node/register src/main.ts",
"build": "npm run clean && tsc && tsc-alias",
"start": "npm run build && node dist/main.js"
},
"devDependencies": {
"@types/node": "^22.8.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3"
}
}