forked from total-typescript/beginners-typescript-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.22 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "beginners-typescript",
"version": "1.0.0",
"main": "index.js",
"author": "Matt Pocock <mattpocockvoice@gmail.com>",
"license": "GPL-3.0",
"devDependencies": {
"@types/node": "^18.6.5",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"cross-fetch": "^3.1.5",
"jsdom": "^21.1.1",
"typescript": "^5.0.3",
"vite-tsconfig-paths": "^4.0.7",
"vitest": "^0.29.8"
},
"scripts": {
"exercise": "node scripts/exercise.js",
"e": "npm run exercise",
"solution": "cross-env SOLUTION=true node scripts/exercise.js",
"s": "npm run solution",
"ci": "(cd scripts/tests && npx vitest run)",
"update-snapshots": "(cd scripts/tests && npx vitest run -u)",
"prepare": "node scripts/prepare-stackblitz.js",
"e-01": "npm run exercise -- 01",
"s-01": "npm run solution -- 01",
"e-02": "npm run exercise -- 02",
"s-02": "npm run solution -- 02",
"e-03": "npm run exercise -- 03",
"s-03": "npm run solution -- 03",
"e-04": "npm run exercise -- 04",
"s-04": "npm run solution -- 04",
"e-05": "npm run exercise -- 05",
"s-05": "npm run solution -- 05",
"e-06": "npm run exercise -- 06",
"s-06": "npm run solution -- 06",
"e-07": "npm run exercise -- 07",
"s-07": "npm run solution -- 07",
"e-08": "npm run exercise -- 08",
"s-08": "npm run solution -- 08",
"e-09": "npm run exercise -- 09",
"s-09": "npm run solution -- 09",
"e-10": "npm run exercise -- 10",
"s-10": "npm run solution -- 10",
"e-11": "npm run exercise -- 11",
"s-11": "npm run solution -- 11",
"e-12": "npm run exercise -- 12",
"s-12": "npm run solution -- 12",
"e-13": "npm run exercise -- 13",
"s-13": "npm run solution -- 13",
"e-14": "npm run exercise -- 14",
"s-14": "npm run solution -- 14",
"e-15": "npm run exercise -- 15",
"s-15": "npm run solution -- 15",
"e-16": "npm run exercise -- 16",
"s-16": "npm run solution -- 16",
"e-17": "npm run exercise -- 17",
"s-17": "npm run solution -- 17",
"e-18": "npm run exercise -- 18",
"s-18": "npm run solution -- 18"
},
"dependencies": {
"@types/express": "^4.17.13",
"express": "^4.18.1",
"fast-glob": "^3.2.12",
"zod": "^3.17.10"
}
}