-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 741 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 741 Bytes
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": "ts-template",
"version": "2.0.0",
"description": "A template for TypeScript projects.",
"main": "./src/index.ts",
"scripts": {
"dev": "bun run --watch .",
"start": "bun run .",
"docker:build": "docker-compose build",
"docker:start": "docker-compose up -d",
"docker:stop": "docker-compose down",
"docker:logs": "docker-compose logs",
"docker:logs:live": "docker-compose logs -f",
"docker:restart": "bun docker:stop && bun docker:build && bun docker:start"
},
"keywords": [
"typescript",
"ts",
"template",
"project"
],
"author": "Tolgchu",
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/node": "^25.3.5",
"typescript": "^5.9.3"
}
}