-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) Β· 1.75 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
{
"name": "typescript-school",
"description": "π§βππ§βπ«π§βπ Resources for learning more about a common language at the Guardian: TypeScript ",
"type": "module",
"private": true,
"scripts": {
"lint": "npm run lint:package && npm run lint:prettier",
"lint:prettier": "prettier . --write",
"lint:package": "node ./node_modules/@guardian/package-linter/esm/cli.js ./package.json",
"start": "tsx server.ts",
"week-1-breaking-api-changes": "tsx 1-breaking-API-changes/server.ts",
"week-2-primitives": "echo \"Not implement week two yet\" && exit 1",
"week-3-functions": "tsx 3-functions/functions.ts",
"week-4-narrowing-structural-typing": "echo \"Not implement week four yet\" && exit 1",
"week-5-generics": "echo \"Not implement week five yet\" && exit 1",
"week-n": "echo \"Not implement week N yet\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guardian/typescript-school.git"
},
"keywords": [
"typescript"
],
"author": "@guardian/typescript",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/guardian/typescript-school/issues"
},
"homepage": "https://github.com/guardian/typescript-school#readme",
"devDependencies": {
"@guardian/libs": "15.6.3",
"@guardian/package-linter": "0.5.3",
"@guardian/prettier": "5.0.0",
"@guardian/source-foundations": "13.0.0",
"@guardian/tsconfig": "0.2.0",
"@hono/node-server": "1.1.1",
"@types/mdast": "4.0.1",
"@types/node": "20.4.5",
"mdast-zone": "6.0.1",
"prettier": "3.0.3",
"rehype-highlight": "6.0.0",
"rehype-stringify": "9.0.4",
"remark-gfm": "3.0.1",
"remark-parse": "10.0.2",
"remark-rehype": "10.1.0",
"tslib": "2.6.1",
"tsx": "3.14.0",
"typescript": "5.1.6",
"unified": "10.1.2",
"zod": "3.21.4"
}
}