-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) Β· 1.26 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) Β· 1.26 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "dev-school",
"description": "π§βππ§βπ«π§βπ Resources for learning more about common languages at the Guardian: TypeScript and Scala",
"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": "node server.ts",
"week-2-functions": "node 2-functions/functions.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guardian/dev-school.git"
},
"keywords": [
"typescript",
"scala"
],
"author": "@guardian/typescript",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/guardian/dev-school/issues"
},
"homepage": "https://github.com/guardian/dev-school#readme",
"devDependencies": {
"@guardian/package-linter": "0.5.3",
"@guardian/prettier": "5.0.0",
"@guardian/tsconfig": "0.2.0",
"@hono/node-server": "2.0.10",
"@types/mdast": "4.0.1",
"@types/node": "24.12.4",
"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",
"typescript": "5.1.6",
"unified": "10.1.2"
}
}