forked from jannis-baum/Vivify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.27 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.27 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
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
71
{
"name": "vivify-server",
"repository": "https://github.com/jannis-baum/vivify.git",
"author": "Jannis Baum",
"scripts": {
"dev": "VIV_TIMEOUT=0 VIV_PORT=3000 NODE_ENV=development nodemon --exec node --loader ts-node/esm src/app.ts",
"viv": "VIV_PORT=3000 node --loader ts-node/esm src/app.ts",
"lint": "eslint src static",
"lint-markdown": "markdownlint-cli2 --config .github/.markdownlint-cli2.yaml",
"test": "node --loader ts-node/esm tests/unit/cli.ts",
"deduplicate": "yarn-deduplicate"
},
"type": "module",
"dependencies": {
"@primer/octicons": "^19.15.5",
"@viz-js/viz": "^3.16.0",
"ansi_up": "^6.0.6",
"axios": "^1.11.0",
"clipboard": "^2.0.11",
"express": "^5.1.0",
"glob": "11.0.3",
"highlight.js": "^11.11.1",
"katex": "^0.16.22",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-deflist": "^3.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-front-matter": "^0.2.4",
"markdown-it-github-alerts": "^1.0.0",
"markdown-it-inject-linenumbers": "^0.3.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-table-of-contents": "^0.9.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-texmath": "^1.0.0",
"mermaid": "^11.9.0",
"node-stream-zip": "^1.15.0",
"open": "^10.2.0",
"tmp": "^0.2.4",
"uuid": "^11.1.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.32.0",
"@jupyterlab/nbformat": "^4.4.5",
"@types/express": "^5.0.3",
"@types/markdown-it": "^14.1.1",
"@types/node": "^24.2.0",
"@types/primer__octicons": "^19.11.0",
"@types/tmp": "^0.2.6",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"nodemon": "^3.1.10",
"postject": "^1.0.0-alpha.6",
"prettier": "^3.6.2",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"webpack": "^5.101.0",
"webpack-cli": "^6.0.1",
"yarn-deduplicate": "^6.0.2"
}
}