This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
61 lines (61 loc) · 1.81 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
{
"name": "carte-blanche-react-plugin",
"version": "0.3.0",
"description": "",
"homepage": "https://github.com/carteb/carte-blanche",
"bugs": {
"url": "https://github.com/carteb/carte-blanche/issues"
},
"contributors": [
"Nik Graf <nik@nikgraf.com> (https://medium.com/@nikgraf)",
"Max Stoiber <contact@mxstbr.com> (http://mxstbr.com)",
"Jan Nicklas <j.nicklas@me.com> (https://twitter.com/jantimon)"
],
"repository": {
"type": "git",
"url": "https://github.com/carteb/carte-blanche"
},
"license": "MIT",
"main": "dist/plugin.js",
"keywords": [
"editor",
"wysiwyg",
"draft",
"react",
"ux",
"components",
"widget",
"react-component"
],
"dependencies": {
"axios": "^0.12.0",
"body-parser": "^1.15.1",
"carte-blanche": "^0.3.0",
"carte-blanche-utils": "^0.0.1",
"chokidar": "^1.5.1",
"cors": "^2.7.1",
"express": "^4.13.4",
"faker": "^3.1.0",
"lodash": "^4.13.1",
"mkdirp": "^0.5.1",
"path": "^0.12.7",
"react": "^15.1.0",
"react-addons-create-fragment": "^15.1.0",
"react-docgen": "^2.8.2",
"react-dom": "^15.1.0",
"react-frame-component": "^0.6.1",
"read-multiple-files": "^1.1.1",
"socket.io": "^1.4.6",
"socket.io-client": "^1.4.6",
"speakingurl": "^9.0.0",
"velocity-react": "^1.1.5",
"webpack": ">=1 <3 || ^2.1.0-beta"
},
"scripts": {
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "cross-env NODE_ENV=production webpack --config webpack.prod.babel.js",
"build:backend": "cross-env BABEL_DISABLE_CACHE=1 BABEL_ENV=production babel --out-dir=dist plugin.js resolver.js server/server.js server/run.js server/utils/getAbsoluteVariationPath.js",
"dev": "npm run build:frontend -- --watch",
"prepublish": "npm run build"
}
}