Files
wallet.fullstack.cash/package.json
T

63 lines
1.8 KiB
JSON
Raw Normal View History

2022-02-05 16:46:25 -08:00
{
"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",
"android:setup": "npx cap add android; npx cap update android; npx cap update android; npx cap copy android; capacitor-resources -p android",
"android:open": "npx cap open android",
"develop": "gatsby develop",
"lint": "standard --env mocha --fix",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "npm run lint"
},
"dependencies": {
"@capacitor/android": "2.4.6",
"@capacitor/cli": "2.4.6",
"@capacitor/core": "2.4.6",
"gatsby": "4.4.0",
2022-02-14 06:50:31 -08:00
"fullstack-gatsby-theme-bch-wallet": "1.0.4"
2022-02-05 16:46:25 -08:00
},
"repository": {
"type": "git",
"url": "https://github.com/Permissionless-Software-Foundation/wallet.fullstack.cash"
},
"bugs": {
"url": "https://github.com/Permissionless-Software-Foundation/wallet.fullstack.cash/issues"
},
"devDependencies": {
"capacitor-resources": "2.0.5",
"eslint": "7.24.0",
"eslint-config-prettier": "8.2.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-standard": "5.0.0",
"husky": "4.3.8",
"mocha": "9.1.3",
"semantic-release": "17.4.2",
"standard": "16.0.3"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": false
}
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}