-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
70 lines (70 loc) · 2.03 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
69
70
{
"name": "obsidian-advanced-slides",
"version": "1.20.0",
"description": "Create markdown-based presentations in Obsidian",
"main": "src/main.ts",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint --fix --ext .ts .",
"docs": "cd docs && hugo serve",
"all": "node esbuild.config.mjs & cd docs && hugo serve"
},
"repository": "[email protected]:MSzturc/obsidian-advanced-slides.git",
"author": "Matthäus Szturc",
"license": "MIT",
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@tsconfig/node16": "^1.0.2",
"@types/color": "^3.0.2",
"@types/express": "4.11.1",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.177",
"@types/mustache": "^4.1.2",
"@types/node": "^16.11.11",
"@types/request": "^2.48.7",
"@types/yaml-front-matter": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"builtin-modules": "^3.2.0",
"chart.js": "^3.7.1",
"electron": "^16.0.4",
"esbuild": "^0.14.2",
"esbuild-plugin-copy": "^1.3.0",
"esbuild-sass-plugin": "^2.0.0",
"eslint": "^8.5.0",
"highlight.js": "^11.7.0",
"jest": "^27.4.5",
"mathjax": "^3.2.0",
"obsidian": "^0.16.3",
"reveal.js": "^4.5.0",
"reveal.js-menu": "^2.1.0",
"reveal.js-mermaid-plugin": "^1.0.0",
"reveal.js-plugins": "^4.1.5",
"reveal.js-elapsed-time-bar": "https://github.com/tkrkt/reveal.js-elapsed-time-bar.git",
"reveal-pointer": "https://github.com/burnpiro/reveal-pointer.git",
"sass": "^1.45.1",
"ts-jest": "^27.1.2",
"ts-mockito": "^2.6.1",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"dependencies": {
"@popperjs/core": "^2.11.0",
"color": "^4.1.0",
"express": "4.15.5",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"prettier": "^2.6.1",
"request": "^2.88.2",
"yaml-front-matter": "^4.1.1"
}
}