-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "bch-wallet-starter",
"description": "A BCH web wallet starter for Gatsby.",
"version": "1.0.0",
"license": "MIT",
"author": "Chris Troutner <[email protected]>",
"contributors": [
"Daniel Gonzalez <[email protected]>",
"Andre Cabrera <[email protected]>"
],
"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",
"android:setup": "npx cap add android; npx cap update android; npx cap update android; npx cap copy android; capacitor-resources -p android -I",
"android:open": "npx cap open android"
},
"dependencies": {
"@capacitor/android": "^3.4.3",
"@capacitor/cli": "^3.4.3",
"@capacitor/core": "^3.4.3",
"gatsby": "4.8.1",
"gatsby-plugin-bch-tx-history": "1.1.4",
"gatsby-theme-bch-wallet": "1.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Permissionless-Software-Foundation/bch-wallet-starter"
},
"bugs": {
"url": "https://github.com/Permissionless-Software-Foundation/bch-wallet-starter/issues"
},
"devDependencies": {
"mocha": "9.2.1",
"semantic-release": "19.0.2",
"standard": "16.0.4"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": false
}
]
}
}