-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
97 lines (97 loc) · 3.04 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
{
"name": "draft-js-katex-plugin",
"description": "Katex Plugin for DraftJS",
"version": "1.3.1",
"author": {
"name": "letranloc",
"email": "[email protected]",
"url": "https://letranloc.com"
},
"bugs": {
"url": "https://github.com/letranloc/draft-js-katex-plugin/issues"
},
"dependencies": {
"aphrodite": "^1.2.3",
"decorate-component-with-props": "^1.0.2",
"draft-js": ">=0.9.1",
"jquery": "^3.2.1",
"katex": "^0.8.3",
"math-input": "github:letranloc/math-input#web-support",
"mathquill": "^0.10.1-a",
"react-addons-css-transition-group": "^15.6.0",
"react-addons-pure-render-mixin": "^15.6.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"union-class-names": "^1.0.0"
},
"devDependencies": {
"@storybook/react": "^3.2.8",
"asciimath-to-latex": "^0.3.2",
"autoprefixer": "^6.7.7",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.5",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.27.2",
"draft-js-plugins-editor": "2.0.0-rc7",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-mocha": "^4.5.1",
"eslint-plugin-react": "^6.2.0",
"extract-text-webpack-plugin": "^2.1.0",
"flow-bin": "^0.41.0",
"lint-staged": "^3.0.1",
"postcss-loader": "^1.3.3",
"prop-types": "^15.6.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"rimraf": "^2.6.1",
"style-loader": "^0.13.2",
"webpack": "^2.2.1"
},
"homepage": "https://github.com/letranloc/draft-js-katex-plugin",
"keywords": [
"components",
"draft",
"editor",
"react",
"react-component",
"ux",
"widget",
"wysiwyg"
],
"license": "MIT",
"lint-staged": {
"lint:eslint": "*.js"
},
"main": "lib/index.js",
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "https://github.com/letranloc/draft-js-katex-plugin.git"
},
"scripts": {
"build": "npm run clean && npm run build:js && npm run build:css",
"build:css": "node ./scripts/concatCssFiles $(pwd) && rimraf lib-css",
"build:js": "WEBPACK_CONFIG=$(pwd)/webpack.config.js BABEL_DISABLE_CACHE=1 BABEL_ENV=production NODE_ENV=production babel --out-dir='lib' --ignore='__test__/*' src",
"clean": "rimraf lib storybook-static",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint --rule 'mocha/no-exclusive-tests:2' ./",
"lint:eslint:fix": "eslint --fix --rule 'mocha/no-exclusive-tests:2' ./",
"lint:staged": "lint-staged",
"prepublish": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "WEBPACK_CONFIG=$(pwd)/webpack.config.js BABEL_DISABLE_CACHE=1 build-storybook -c .storybook -o storybook-static"
}
}