-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1001 Bytes
/
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
{
"name": "react-hyperscript-beefy-boilerplate",
"version": "2.3.0",
"description": "A boilerplate for react-hyperscript using browserify with beefy and ES6.",
"main": "index.js",
"scripts": {
"start": "beefy index.js:bundle.js --live --open",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
],
"brfs"
]
},
"author": "Dan Finlay",
"license": "ISC",
"dependencies": {
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-hyperscript": "^2.4.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-logger": "^2.3.1",
"redux-thunk": "^1.0.2",
"xtend": "^4.0.1"
},
"keywords": [
"react",
"hyperscript",
"beefy",
"browserify",
"boilerplate"
],
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"brfs": "^1.4.3"
}
}