-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 818 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 818 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
30
31
32
33
34
{
"name": "sql-in-a-month",
"version": "1.0.0",
"description": "Learn core SQL & PostgreSQL in one month with hands-on, test-driven exercises that run against an embedded Postgres (PGlite).",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:block": "vitest run",
"test:solutions": "vitest run --config vitest.solutions.config.ts",
"typecheck": "tsc --noEmit",
"play": "tsx scripts/play.ts"
},
"keywords": [
"sql",
"postgresql",
"postgres",
"learning",
"exercises",
"tutorial",
"tdd",
"pglite"
],
"license": "MIT",
"dependencies": {
"@electric-sql/pglite": "^0.2.17"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}