-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.15 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.15 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
{
"main": "./slides/app.ts",
"scripts": {
"compile": "tsc",
"lint": "eslint src",
"prebundle": "tsc",
"bundle": "esbuild ./dist/main.js --bundle --sourcemap --outfile=decks/bundle.js",
"test": "jest",
"docs": "typedoc --name Presentations --plugin typedoc-github-theme --entryPointStrategy Expand src/git src/util src/slides",
"format": "prettier --write .",
"check-format": "prettier . --check"
},
"dependencies": {
"@hazae41/disposable-stack-polyfill": "^1.0.1",
"@svgdotjs/svg.js": "^3.2.4",
"reveal.js": "^5.1.0",
"ts-jest-resolver": "^2.0.1",
"typedoc-github-theme": "^0.2.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@jest/globals": "^29.7.0",
"@types/events": "^3.0.3",
"@types/jest": "^29.5.14",
"@types/reveal.js": "^5.0.5",
"esbuild": "0.24.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.27.8",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1"
}
}