forked from standardnotes/markdown-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.64 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
{
"name": "sn-simple-markdown-editor",
"version": "1.3.6",
"main": "dist/dist.js",
"scripts": {
"lint": "eslint --cache --ignore-path .gitignore --ext .jsx,.js --format=node_modules/eslint-formatter-pretty .",
"test": "npm run lint",
"build": "webpack",
"start": "webpack-dev-server --devtool eval --progress --hot --content-base app",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"watch": "webpack --watch",
"server": "http-server -p 8004 --cors",
"pretty": "prettier --write 'app/**/*.{html,css,scss,js,jsx,ts,tsx}'"
},
"sn": {
"main": "dist/index.html"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"copy-webpack-plugin": "6.0.2",
"css-loader": "~3.5.3",
"highlight.js": "^10.0.3",
"immutability-helper": "^3.1.1",
"katex": "^0.11.1",
"markdown-it": "^11.0.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-highlightjs": "^3.1.0",
"markdown-it-task-lists": "^2.1.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"react": "16.x",
"react-dom": "16.x",
"regenerator-runtime": "^0.13.5",
"sass-loader": "^8.0.2",
"sn-components-api": "1.2.8",
"sn-editor-kit": "1.0.6",
"sn-stylekit": "2.0.22",
"source-map-loader": "^1.0.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "3.11.0"
}
}