forked from abhaynikam/react-trix-rte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.36 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-trix-rte",
"version": "1.0.9",
"description": "React wrapper for Trix rich text editor created by Basecamp",
"main": "./index.js",
"scripts": {
"build": "webpack --config webpack.config.babel.js",
"build-examples": "webpack --config examples/webpack.config.babel.js --progress",
"clean": "rm -rf dist coverage",
"coverage": "jest --coverage",
"lint": "eslint ./src",
"prepublish": "npm run clean && npm run test && npm run build",
"start": "webpack-dev-server --config examples/webpack.config.live.babel.js",
"test": "npm run lint && npm run coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhaynikam/react-trix-rte.git"
},
"keywords": [
"React",
"Trix"
],
"author": "Abhay Nikam",
"license": "MIT",
"bugs": {
"url": "https://github.com/abhaynikam/react-trix-rte/issues"
},
"homepage": "https://abhaynikam.github.io/react-trix-rte/",
"dependencies": {
"trix": "^1.3.1"
},
"peerDependencies ": {
"ramda": "^0.27.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@storybook/storybook-deployer": "^2.8.5",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^1.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.8.0",
"eslint-plugin-react": "^7.4.0",
"gh-pages": "^2.2.0",
"jest-cli": "^23.6.0",
"node-sass": "^4.7.2",
"prop-types": "^15.6.0",
"react-hot-loader": "next",
"react-test-renderer": "^16.0.0",
"regenerator-runtime": "^0.12.1",
"sass-loader": "^7.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"minimist": "^1.2.2"
}
}