forked from gzuidhof/starboard-notebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.7 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "starboard-notebook",
"version": "0.8.14",
"description": "Starboard Notebook",
"author": "Guido Zuidhof <[email protected]>",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/gzuidhof"
},
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "github.com/gzuidhof/starboard-notebook"
},
"keywords": [
"starboard",
"notebook",
"cell",
"literate"
],
"scripts": {
"build": "rimraf ./dist && npm run build:notebook && tsc",
"build:notebook": "webpack --mode=production",
"build:stats": "rimraf ./dist && mkdir dist && webpack --mode=production --stats normal --json > dist/stats.json",
"start": "webpack-dev-server --mode=development",
"test": "jest",
"lint": "eslint src/**/*.ts test/**/*.ts",
"prepublishOnly": "npm i && npm t && npm run build"
},
"main": "dist/starboard-notebook.js",
"files": [
"dist"
],
"devDependencies": {
"@peculiar/webcrypto": "^1.1.4",
"@types/bootstrap": "^5.0.8",
"@types/iframe-resizer": "^3.5.8",
"@types/jest": "^25.2.1",
"@types/katex": "^0.11.0",
"@types/markdown-it": "0.0.9",
"@types/markdown-it-emoji": "^1.4.0",
"@types/prosemirror-commands": "^1.0.4",
"@types/prosemirror-dropcursor": "^1.0.1",
"@types/prosemirror-gapcursor": "^1.0.3",
"@types/prosemirror-history": "^1.0.2",
"@types/prosemirror-inputrules": "^1.0.4",
"@types/prosemirror-keymap": "^1.0.4",
"@types/prosemirror-menu": "^1.0.3",
"@types/prosemirror-schema-list": "^1.0.3",
"@types/prosemirror-state": "^1.2.6",
"@types/prosemirror-view": "^1.17.1",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"css-loader": "^3.4.2",
"css-minimizer-webpack-plugin": "^1.1.5",
"eslint": "^7.5.0",
"extract-loader": "^5.0.1",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.2.0",
"jest": "^26.5.2",
"mini-css-extract-plugin": "^0.9.0",
"monaco-editor-webpack-plugin": "^2.0.0",
"node-fetch": "^2.6.1",
"node-sass": "^4.13.1",
"raw-loader": "^4.0.0",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "4.2.3",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.4",
"typescript": "^4.2.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@babel/parser": "^7.10.5",
"@benrbray/prosemirror-math": "^0.1.4",
"@codemirror/next": "^0.16.0",
"@github/mini-throttle": "^2.0.1",
"@iktakahiro/markdown-it-katex": "^4.0.1",
"@popperjs/core": "^2.5.3",
"@spectrum-web-components/icons-ui": "^0.1.0",
"@spectrum-web-components/icons-workflow": "^0.2.0",
"@types/node-fetch": "^2.5.7",
"babel-walk": "^3.0.0",
"bootstrap": "^5.0.0-beta2",
"console-feed-modern": "^3.0.5",
"iframe-resizer": "^4.2.10",
"katex": "^0.12.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1",
"markdown-it": "^10.0.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-prism": "^2.1.6",
"monaco-editor": "^0.21.0",
"preact": "^10.5.3",
"prismjs": "^1.23.0",
"prosemirror-commands": "^1.1.7",
"prosemirror-dropcursor": "^1.3.3",
"prosemirror-gapcursor": "^1.1.5",
"prosemirror-history": "^1.1.3",
"prosemirror-inputrules": "^1.1.3",
"prosemirror-keymap": "^1.1.4",
"prosemirror-menu": "^1.1.4",
"prosemirror-model": "^1.13.3",
"prosemirror-schema-list": "^1.1.4",
"prosemirror-state": "^1.3.4",
"prosemirror-transform": "^1.2.12",
"prosemirror-view": "^1.18.1",
"starboard-python": "^0.6.3",
"yaml": "^2.0.0-1"
}
}