59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "redux-bluetooth-counter-peripheral",
|
|
"version": "0.1.0",
|
|
"description": "Redux Bluetooth example: Counter peripheral",
|
|
"main": "build/index.js",
|
|
"scripts": {
|
|
"prestart": "npm run build",
|
|
"start": "babel-node src/index.js",
|
|
"dev": "watch 'npm run build' src",
|
|
"prebuild": "cd ../.. && npm run build",
|
|
"build": "babel src -d build",
|
|
"test": "jest",
|
|
"test:watch": "npm test -- --watch"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"@babel/preset-env"
|
|
],
|
|
"plugins": [
|
|
[
|
|
"transform-react-jsx",
|
|
{
|
|
"pragma": "h"
|
|
}
|
|
]
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/jvallelunga/redux-bluetooth.git"
|
|
},
|
|
"keywords": [
|
|
"redux-bluetooth",
|
|
"example",
|
|
"counter",
|
|
"peripheral"
|
|
],
|
|
"author": "Jeronimo Vallelunga",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/jvallelunga/redux-bluetooth/issues"
|
|
},
|
|
"homepage": "https://github.com/jvallelunga/redux-bluetooth#readme",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.2.3",
|
|
"@babel/core": "^7.3.4",
|
|
"@babel/node": "^7.2.2",
|
|
"@babel/preset-env": "^7.3.4",
|
|
"babel-plugin-transform-react-jsx": "^6.24.1",
|
|
"nodemon": "^1.18.10"
|
|
},
|
|
"dependencies": {
|
|
"ink": "^0.1.2",
|
|
"ink-redux": "^1.0.0",
|
|
"prop-types": "^15.5.10",
|
|
"redux": "^3.7.1"
|
|
}
|
|
}
|