-
Notifications
You must be signed in to change notification settings - Fork 177
/
package.json
56 lines (56 loc) · 1.67 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "zod-tutorial",
"version": "1.0.0",
"main": "index.js",
"author": "Matt Pocock <[email protected]>",
"license": "MIT",
"devDependencies": {
"@total-typescript/exercise-cli": "^0.11.0",
"@types/node": "^18.6.5",
"jsdom": "^25.0.0",
"typescript": "^5.6.2",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.0"
},
"scripts": {
"exercise": "tt-cli run",
"e": "npm run exercise",
"solution": "tt-cli run --solution",
"s": "npm run solution",
"update-snapshots": "(cd scripts/tests && npx vitest run -u)",
"ci": "(cd scripts/tests && npx vitest run)",
"prepare": "tt-cli prepare-stackblitz",
"e-01": "tt-cli run 01",
"s-01": "tt-cli run 01 --solution",
"e-02": "tt-cli run 02",
"s-02": "tt-cli run 02 --solution",
"e-03": "tt-cli run 03",
"s-03": "tt-cli run 03 --solution",
"e-04": "tt-cli run 04",
"s-04": "tt-cli run 04 --solution",
"e-05": "tt-cli run 05",
"s-05": "tt-cli run 05 --solution",
"e-06": "tt-cli run 06",
"s-06": "tt-cli run 06 --solution",
"e-07": "tt-cli run 07",
"s-07": "tt-cli run 07 --solution",
"e-08": "tt-cli run 08",
"s-08": "tt-cli run 08 --solution",
"e-09": "tt-cli run 09",
"s-09": "tt-cli run 09 --solution",
"e-10": "tt-cli run 10",
"s-10": "tt-cli run 10 --solution",
"e-11": "tt-cli run 11",
"s-11": "tt-cli run 11 --solution",
"e-12": "tt-cli run 12",
"s-12": "tt-cli run 12 --solution",
"e-13": "tt-cli run 13",
"s-13": "tt-cli run 13 --solution",
"e-14": "tt-cli run 14",
"s-14": "tt-cli run 14 --solution"
},
"dependencies": {
"zod": "^3.23.8"
},
"type": "module"
}