-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.04 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
{
"name": "crypto-high-score",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "beefy index.js:bundle.js --live --open",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify index.js -o bundle.js"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
],
"brfs"
]
},
"author": "Jordan Lyall",
"license": "ISC",
"dependencies": {
"ethjs": "^0.2.4",
"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",
"beefy": "^2.1.8",
"brfs": "^1.4.3",
"browserify": "^14.0.0",
"watchify": "^3.9.0"
}
}