-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (26 loc) · 1.09 KB
/
package.json
File metadata and controls
28 lines (26 loc) · 1.09 KB
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
{
"name": "dogetech-dev-env",
"version": "0.2.1",
"description": "Dev Containers for Windows Developers! Safe, isolated Node.js/TypeScript environment using VS Code Dev Containers. Perfect for GitHub Copilot experiments without cluttering your Windows system.",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --inspect=0.0.0.0:9229 src/index.ts",
"dev:debug": "ts-node-dev --respawn --transpile-only --inspect-brk=0.0.0.0:9229 src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"container:build": "docker-compose build app-dev",
"container:rebuild": "docker-compose build app-dev --no-cache",
"container:up": "docker-compose up app-dev",
"container:down": "docker-compose down",
"secrets:setup": "pwsh -File scripts/setup-secrets.ps1",
"github:setup": "bash scripts/github-setup.sh",
"requirements:check": "pwsh -File scripts/check-host-requirements.ps1"
},
"dependencies": {
"typescript": "^5.9.3"
},
"devDependencies": {
"ts-node-dev": "^2.0.0",
"@types/node": "^20.0.0"
}
}