-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "markdown-editor",
"version": "1.0.0",
"description": "A simple web app to view and edit markdown built with React, Webpack, and Bootstrap",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robjweiss/Markdown-Editor.git"
},
"keywords": [
"markdown",
"react",
"webpack",
"bootstrap"
],
"author": "Rob Weiss",
"license": "ISC",
"bugs": {
"url": "https://github.com/robjweiss/Markdown-Editor/issues"
},
"homepage": "https://github.com/robjweiss/Markdown-Editor#readme",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-syntax-class-properties": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^1.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.8"
},
"dependencies": {
"bootstrap": "^4.1.3",
"interweave": "^10.1.3",
"jquery": "^3.3.1",
"popper.js": "^1.14.4",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"showdown": "^1.9.0"
}
}