-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.03 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
29
30
31
32
{
"name": "typescript-demo",
"version": "1.0.0",
"description": "A zero-to-hero TypeScript tutorial with runnable lessons, a dark web studio, and a small API chapter.",
"type": "module",
"private": false,
"scripts": {
"api": "tsx api/server.ts",
"build": "tsc --noEmit && vite build",
"check": "pnpm typecheck && pnpm test",
"dev": "vite --host 127.0.0.1",
"dev:web": "pnpm dev",
"lesson:01": "tsx lessons/01-hello-world.ts",
"lesson:02": "tsx lessons/02-values.ts",
"lesson:03": "tsx lessons/03-functions.ts",
"lesson:04": "tsx lessons/04-unions.ts",
"lesson:05": "tsx lessons/05-generics.ts",
"lesson:06": "tsx lessons/06-async.ts",
"lesson:07": "tsx lessons/07-api-client.ts",
"lesson:08": "tsx lessons/08-frontend-state.ts",
"preview": "vite preview --host 127.0.0.1",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "26.0.1",
"tsx": "4.22.4",
"typescript": "6.0.3",
"vite": "8.1.0",
"vitest": "4.1.9"
}
}