forked from accordproject/markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.26 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@accordproject/markdown-editor",
"version": "0.6.1",
"description": "A rich text editor that can read and write markdown text. Based on Slate.js.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/accordproject/markdown-editor.git"
},
"scripts": {
"test": "jest --passWithNoTests",
"dev": "webpack-dev-server --mode development --config webpack.config.js",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "npm run transpile",
"build": "webpack --mode production --config webpack.config.prod.js",
"build:dev": "webpack --config webpack.config.js",
"lint": "npm run lint:js && npm run lint:stylus",
"lint:js": "eslint --ext .js --ext .jsx --ignore-path .gitignore .",
"lint:js:fix": "eslint --ext .js --ext .jsx --ignore-path .gitignore --fix .",
"lint:stylus": "stylint --config .stylintrc ./src/stylesheets",
"pkgcheck": "node ./scripts/pkgcheck.js",
"pkgstamp": "node ./scripts/pkgstamp.js",
"pkgbump": "node ./scripts/pkgbump.js && node ./scripts/pkgcheck.js --fix",
"pkgset": "node ./scripts/pkgset.js",
"depcheck": "node ./scripts/depcheck.js"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"keywords": [
"accord",
"markdown",
"slate.js",
"rich text"
],
"author": "accordproject.org",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/accordproject/markdown-editor/issues"
},
"homepage": "https://github.com/accordproject/markdown-editor",
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": ">= 4"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.6.2",
"@clausehq/eslint-config": "^0.1.8",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-loopback": "^13.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"moment-mini": "2.22.1",
"react-scripts": "^3.2.0",
"semver": "6.1.1",
"styled-components": "^4.4.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@accordproject/markdown-slate": "^0.4.5",
"commonmark": "^0.29.0",
"css-loader": "^3.2.0",
"immutable": "^3.8.2",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-flipcard": "^0.2.1",
"react-immutable-proptypes": "^2.1.0",
"react-textarea-autosize": "^7.1.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.87.3",
"slate": "^0.47.8",
"slate-html-serializer": "^0.8.10",
"slate-plain-serializer": "^0.7.10",
"slate-react": "^0.22.9",
"style-loader": "^0.23.1"
}
}