-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "lambda-bricks",
"version": "0.1.0",
"description": "Visual Programming Environment frontend",
"author": {
"name": "Daniel Garcia Carmona",
"email": "[email protected]"
},
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "github.com/lambdabricks/bricks-front-react"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
}
]
]
},
"dependencies": {
"isomorphic-fetch": "^2.1.1",
"lodash.throttle": "^4.0.1",
"query-string": "^4.1.0",
"react": "^0.14.0",
"react-art": "^0.14.0",
"react-dom": "^0.14.0",
"react-joyride": "^1.3.4",
"react-redux": "^3.1.0",
"redux": "^3.0.0",
"redux-batched-subscribe": "^0.1.4",
"redux-thunk": "^0.1.0"
},
"devDependencies": {
"babel-core": "^6.3.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"http-server": "^0.8.5",
"watchify": "^3.3.1"
},
"scripts": {
"start": "watchify --extension=js -o docs/app.js src/index.js & watchify --extension=js -o docs/tutorial.js src/tutorial-index.js & http-server docs"
}
}