Files
wallet.fullstack.cash/package.json
T

52 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "wallet.fullstack.cash",
"description": "A Gatsby IPFS-enabled web app and BCH web wallet.",
"version": "1.0.0",
"license": "MIT",
"author": "Chris Troutner <chris.troutner@gmail.com>",
"contributors": [
"Daniel Gonzalez <danielhumgon@gmail.com>",
"Andre Cabrera <andrecabrera@protonmail.ch>"
],
"scripts": {
"build": "gatsby build",
"build:ipfs": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"lint": "standard --env mocha --fix",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "npm run lint"
},
"dependencies": {
"gatsby": "^2.31.1",
"gatsby-ipfs-web-wallet": "^1.19.2",
2020-11-09 12:24:47 -08:00
"gatsby-plugin-bch-sweep": "^1.5.1"
},
"repository": {
"type": "git",
2020-11-20 20:19:44 -08:00
"url": "https://github.com/Permissionless-Software-Foundation/wallet.fullstack.cash"
},
"bugs": {
2020-11-20 20:19:44 -08:00
"url": "https://github.com/Permissionless-Software-Foundation/wallet.fullstack.cash/issues"
},
"devDependencies": {
"husky": "^4.2.5",
"semantic-release": "^17.3.7",
"standard": "^14.3.4"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": false
}
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}