forked from digabi/rich-text-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.91 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
{
"name": "rich-text-editor",
"version": "6.0.0",
"description": "Rich text editor",
"author": "",
"homepage": "https://github.com/digabi/rich-text-editor",
"main": "server/mathSvg.js",
"files": [
"dist/*",
"server/mathSvg.js"
],
"scripts": {
"clean": "rm -rf dist/",
"build:tsc": "tsc -p src",
"build:assets": "bash -c 'mkdir -p dist; cp public/{rich-text-editor.css,*.svg} dist/'",
"build": "concurrently --prefix \"[{name}]\" --names \"TSC,ASSETS\" \"npm run build:tsc\" \"npm run build:assets\"",
"build:bundle": "TYPECHECK=1 webpack --mode production --config webpack.bundle.config.js",
"start": "node test/index.js",
"test": "eslint . && test/testRunner.js",
"dev": "supervisor -i public,test test/index.js",
"generateMathButtons": "scripts/createMathSvg.js && prettier --write src/latexCommandsWithSvg.js",
"lint": "eslint .",
"prepare": "npm run build && npm run build:bundle"
},
"repository": {
"type": "git",
"url": "https://github.com/digabi/rich-text-editor.git"
},
"devDependencies": {
"@babel/polyfill": "^7.0.0",
"chai": "^4.2.0",
"chai-jquery": "^2.1.0",
"concurrently": "^4.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"express": "^4.16.4",
"mathjax": "^2.7.5",
"mocha": "^5.0.4",
"mocha-chrome": "^1.0.3",
"morgan": "^1.9.1",
"prettier": "~1.15.1",
"sanitize-html": "^1.19.1",
"supervisor": "^0.12.0",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"typescript": "^3.1.6",
"web-console-reporter": "^1.0.0",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.4.0"
},
"dependencies": {
"@digabi/mathquill": "^0.10.3",
"jquery": "^3.3.1",
"mathjax-node": "^2.1.1"
},
"peerDependencies": {
"jquery": "3.x",
"sanitize-html": "^1.19.1"
}
}