-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.85 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
{
"name": "panels-runtime",
"version": "0.5.0",
"description": "A runtime to run apps on panels",
"main": "index.js",
"scripts": {
"test": ".bin/test",
"prepublish": "if [ \"$NODE_ENV\" = production ]; then .bin/compile; fi",
"postpublish": "if [ \"$NODE_ENV\" = production ]; then .bin/clean; fi",
"start": ".bin/start"
},
"repository": {
"type": "git",
"url": "https://github.com/UXtemple/panels-runtime"
},
"keywords": [
"panels",
"apps",
"runtime",
"UXtemple"
],
"author": "UXtemple <[email protected]>",
"contributors": [
"Darío Javier Cravero <[email protected]>",
"Tom Parandyk <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/UXtemple/panels-runtime/issues"
},
"homepage": "https://github.com/UXtemple/panels-runtime",
"dependencies": {
"lodash.debounce": "^3.1.1",
"panels-contexts": "^0.2.0",
"panels-router": "^0.6.0",
"panels-store": "^0.4.0",
"panels-types": "^0.3.0",
"panels-ui": "^0.5.0",
"raf": "^3.1.0",
"react": "^0.14.0-beta1",
"redux": "^0.12.0",
"seamless-immutable": "^2.4.2"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-eslint": "^3.1.20",
"babel-loader": "^5.3.1",
"babelify": "^6.1.2",
"browserify": "^10.2.4",
"eslint": "^0.24.0",
"eslint-plugin-react": "^2.6.4",
"koa": "^0.21.0",
"koa-sendfile": "^1.1.1",
"koa-static": "^1.4.9",
"livereloadify": "^2.0.0",
"lodash": "^3.10.0",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"panels-blocks": "^0.2.0",
"react-dom": "^0.14.0-beta1",
"react-hot-loader": "^1.2.8",
"sinon": "^1.15.4",
"watchify": "^3.2.3",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"browserify": {
"transform": [
"babelify"
]
}
}