-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.91 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.91 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"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",
"adminlte-2-react": "0.2.0-beta.10",
"fullstack-gatsby-plugin-bch-create-token": "1.0.2",
"fullstack-gatsby-plugin-bch-sweep": "1.0.0",
"fullstack-gatsby-theme-bch-wallet-v1": "1.0.12",
"gatsby": "4.4.0"
},
"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": "^10.0.0",
"semantic-release": "17.4.2",
"standard": "16.0.3"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": false
}
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}