-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 3.33 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
{
"name": "@opuscapita/react-rich-editors",
"version": "2.0.7-SNAPSHOT",
"description": "JS React based rich editors based on Draft.js",
"scripts": {
"link-mode": "webpack --watch --config ./webpack.link.config.js",
"lint": "eslint src/client",
"start": "nodemon --watch src/server src/server/index --exec babel-node --presets es2015,stage-0,react --plugins transform-decorators-legacy",
"grails-plugin-build": "rimraf build && webpack --config ./webpack.production.config.js --progress --profile --colors",
"grails-plugin-package": "npm run grails-plugin-build && grails-plugin-package",
"grails-plugin-install": "npm run grails-plugin-package && grails-plugin-install",
"grails-plugin-deploy": "npm run grails-plugin-package -- --release && grails-plugin-deploy --release",
"npm-build": "rimraf lib && babel --copy-files --no-babelrc --presets es2015,stage-0,react --plugins transform-decorators-legacy --ignore __tests__,*.spec.js,demo src/client --out-dir lib",
"npm-publish": "npm run npm-build && npm publish",
"publish-release": "npm run grails-plugin-deploy && npm run npm-publish"
},
"main": "lib/index.js",
"files": [
"lib",
"README.md"
],
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": "OpusCapita/react-rich-editors",
"peerDependencies": {
"react": "^15.6.2 || ^16.2.0",
"react-dom": "^15.6.2 || ^16.2.0"
},
"devDependencies": {
"@opuscapita/npm-scripts": "2.0.1-beta.1",
"@opuscapita/react-showroom-client": "1.3.0-beta.6",
"@opuscapita/react-showroom-server": "1.3.0",
"autoprefixer": "6.4.1",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "7.1.1",
"babel-loader": "6.4.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"compression": "1.7.1",
"cross-env": "5.1.1",
"css-loader": "0.28.7",
"eslint": "3.19.0",
"eslint-config-opuscapita": "1.0.9",
"eslint-plugin-react": "6.10.3",
"express": "4.16.2",
"file-loader": "1.1.5",
"json-loader": "0.5.7",
"less": "2.7.3",
"less-loader": "2.2.2",
"nodemon": "1.12.7",
"postcss-loader": "0.13.0",
"raw-loader": "0.5.1",
"rimraf": "2.6.2",
"source-map-loader": "0.2.3",
"style-loader": "0.19.1",
"url-loader": "0.6.2",
"webpack": "2.2.1",
"webpack-dev-middleware": "1.10.1",
"write-file-webpack-plugin": "3.4.2"
},
"dependencies": {
"@opuscapita/react-autocompletes": "3.0.0",
"@opuscapita/react-buttons": "4.0.1",
"@opuscapita/react-overlays": "3.0.0",
"@opuscapita/svg-icons": "1.1.1",
"draft-js": "0.10.4",
"draft-js-export-html": "1.2.0",
"draft-js-export-markdown": "1.2.0",
"draft-js-import-markdown": "1.2.1",
"draft-js-typeahead": "^0.1.1",
"immutable": "3.8.2",
"keycode": "2.1.9",
"prop-types": "15.6.0",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-motion": "0.5.2"
},
"grails": {
"resources": {
"react-rich-editors": {
"files": {
"client/rich-editors.bundle.min.js": "js/rich-editors.bundle.min.js"
}
}
}
}
}