-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.28 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
{
"name": "react-slate-elements",
"version": "0.0.3",
"description": "A collection of blocks and marks to use with Slate.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"author": "Diego Couto<[email protected]>",
"license": "MIT",
"homepage": "https://diegocouto.github.com/react-slate-elements",
"repository": {
"type": "git",
"url": "https://github.com/diegocouto/react-slate-elements"
},
"keywords": [
"react",
"reactjs",
"slate",
"slate-react"
],
"files": [
"/dist"
],
"scripts": {
"build": "webpack --mode production",
"deploy": "gh-pages -d examples/dist",
"lint": "eslint src",
"prepublishOnly": "yarn transpile",
"publishDemo": "yarn run build && yarn run deploy",
"start": "webpack-dev-server --mode development --open",
"transpile": "rm -rf dist; babel src -d dist --extensions '.ts,.tsx'",
"tsc": "tsc"
},
"peerDependencies": {
"react": "16.8.x",
"slate": "0.47.x",
"slate-react": "0.22.x",
"styled-components": "4.x"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/is-hotkey": "^0.1.1",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"@types/slate-react": "^0.22.4",
"@types/styled-components": "^4.1.18",
"babel-loader": "^8.0.6",
"babel-plugin-inline-react-svg": "^1.1.0",
"babel-plugin-styled-components": "^1.10.6",
"css-loader": "^3.1.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"immutable": "^4.0.0-rc.12",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"slate": "^0.47.4",
"slate-react": "^0.22.4",
"slate-soft-break": "^0.9.0",
"style-loader": "^0.23.1",
"styled-components": "^4.3.2",
"typescript": "^3.5.3",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"slate-auto-replace": "^0.12.1"
},
"resolutions": {
"babel-plugin-inline-react-svg/svgo/js-yaml": "3.13.1"
}
}