-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "dashboard",
"version": "0.0.1",
"description": "Robo-Ops Dashboard",
"main": "main.js",
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"start": "budo ./index.js --serve=bundle.js --live --open -- -t [ babelify --presets [ es2015 react ] ] | garnish",
"test": "./node_modules/eslint/bin/eslint.js ./src && ./test/run.sh",
"build": "browserify --transform [ babelify --presets [ es2015 react ] ] --debug -p [ minifyify --map bundle.map.json --output bundle.map.json ] index.js -o bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wm-robo-ops/dashboard.git"
},
"author": "Kelvin Abrokwa-Johnson",
"license": "ISC",
"bugs": {
"url": "https://github.com/wm-robo-ops/dashboard/issues"
},
"homepage": "https://github.com/wm-robo-ops/dashboard#readme",
"dependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.3.13",
"hat": "0.0.3",
"immutable": "^3.7.6",
"jsmpeg": "^1.0.0",
"mapbox-gl": "^0.18.0",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-redux": "^4.4.1",
"react-sparklines": "^1.5.0",
"redux": "^3.0.6"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"budo": "^8.2.2",
"eslint": "^2.10.0",
"eslint-plugin-react": "^5.1.1",
"minifyify": "^7.3.1"
}
}