-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
78 lines (78 loc) · 2.16 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
{
"name": "for-editor",
"version": "0.3.5",
"description": "react markdown editor",
"main": "dist/index.js",
"scripts": {
"start": "npm run dev",
"dev": "webpack-dev-server --config webpack/webpack.dev.config.js",
"build": "webpack --config webpack/webpack.prod.config.js",
"dist": "webpack --config webpack/webpack.dist.config.js",
"lint": "eslint --ext .js,.jsx --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/kkfor/for-editor.git"
},
"keywords": [
"javascript",
"react",
"markdown",
"editor"
],
"author": "kkfor",
"license": "MIT",
"bugs": {
"url": "https://github.com/kkfor/for-editor/issues"
},
"files": [
"dist/",
"index.d.ts",
"LICENSE"
],
"homepage": "https://github.com/kkfor/for-editor#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@types/classnames": "^2.2.9",
"@types/marked": "^0.6.5",
"@types/react": "^16.8.16",
"@types/react-dom": "^16.8.4",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"autoprefixer": "^9.5.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.4",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^2.0.2",
"css-modules-typescript-loader": "^2.0.4",
"eslint": "^6.1.0",
"eslint-config-for": "^0.0.1",
"eslint-plugin-react": "^7.14.3",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.15.3",
"raw-loader": "^3.0.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.0",
"typescript": "^3.5.3",
"uglifyjs-webpack-plugin": "^2.1.0",
"webpack": "^4.28.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.5"
},
"dependencies": {
"highlight.js": "^9.13.1",
"marked": "^1.1.1"
}
}