-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.72 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
{
"name": "@standardnotes/markdown-hybrid",
"version": "1.8.1",
"publishConfig": {
"access": "public"
},
"description": "A fully featured Markdown editor that supports live preview, a styling toolbar, and split pane support.",
"main": "dist/dist.js",
"author": "Standard Notes Community",
"license": "AGPL-3.0",
"sn": {
"name": "Markdown",
"content_type": "SN|Component",
"main": "dist/index.html",
"area": "editor-editor",
"spellcheckControl": true,
"note_type": "markdown",
"file_type": "md",
"showInGallery": true
},
"scripts": {
"start": "webpack serve --config webpack.dev.js --progress --hot",
"build": "webpack --config webpack.prod.js",
"skip:lint": "eslint src --ext .js",
"skip:lint:fix": "eslint src --ext .js --fix",
"skip:test": "echo \"Error: no test specified\" && exit 0",
"skip:format": "prettier --write 'src/**/*.{html,css,scss,js,jsx,ts,tsx,json}' README.md"
},
"dependencies": {
"@standardnotes/component-relay": "standardnotes/component-relay#839ff5db9bc92db9d42cad8d202ddc4df729597d"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.13",
"@babel/preset-env": "^7.13.12",
"copy-webpack-plugin": "*",
"css-loader": "^5.2.0",
"dompurify": "^2.2.9",
"easymde": "2.18.0",
"eslint": "*",
"file-loader": "^6.2.0",
"font-awesome": "^4.7.0",
"highlight.js": "^11.10.0",
"html-webpack-plugin": "^5.3.1",
"marked": "^2.0.7",
"mini-css-extract-plugin": "^1.4.0",
"prettier": "*",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"sn-stylekit": "3.0.1",
"webpack": "*",
"webpack-cli": "*",
"webpack-dev-server": "*",
"webpack-merge": "^5.8.0"
}
}