forked from monlovesmango/astral
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.83 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "Dostr",
"version": "0.9.9-beta",
"description": "Ethereum-flavoured Nostr Client",
"productName": "Dostr",
"author": "sshmatrix, 0xc0de4c0ffee",
"homepage": "https://dostr-eth.github.io/dostr-client",
"scripts": {
"postinstall": "patch-package",
"dev": "quasar dev",
"build:pwa": "eslint --ext .js,.vue ./ --fix && quasar build -m pwa",
"build:spa": "eslint --ext .js,.vue ./ --fix && quasar build",
"build:ghp": "eslint --ext .js,.vue ./ --fix && quasar build && node postbuild/replacer_ghp.js && mkdir ./dist/spa/readme 2>/dev/null; cp -r ./readme/* ./dist/spa/readme/",
"build:xyz": "eslint --ext .js,.vue ./ --fix && quasar build && node postbuild/replacer_xyz.js && rm -r ../homepage/app/* 2>/dev/null; cp -r dist/spa/* ../homepage/app/; mkdir ./dist/spa/readme 2>/dev/null; cp -r ./readme/* ./dist/spa/readme/",
"build:eth": "eslint --ext .js,.vue ./ --fix && quasar build && node postbuild/replacer_eth.js && rm -r ../homepage/app/* 2>/dev/null; mkdir ./dist/spa/readme 2>/dev/null; cp -r ./readme/* ./dist/spa/readme/",
"force-ghp-deploy": "git add dist && git commit -m 'gh-pages' && git push origin `git subtree split --prefix dist/spa origin gh-pages`:gh-pages --force && git subtree push --prefix dist/spa origin gh-pages",
"ghp-deploy": "git add dist && git commit -m 'gh-pages' && git subtree push --prefix dist/spa origin gh-pages",
"lint": "eslint --ext .js,.vue ./",
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .prettierignore",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"@ethersproject/providers": "^5.7.2",
"@quasar/extras": "^1.0.0",
"@rainbow-me/rainbowkit": "^0.12.4",
"@wagmi/core": "^0.10.6",
"@walletconnect/sign-client": "^2.6.0",
"@walletconnect/web3-provider": "^1.8.0",
"@web3modal/ethereum": "^2.2.2",
"@web3modal/html": "^2.2.2",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"codemirror": "5",
"core-js": "^3.6.5",
"cross-fetch": "^3.1.5",
"crypto": "^1.0.1",
"dompurify": "^2.4.1",
"emoji-mart-vue-fast": "^12.0.1",
"ethers": "^5.4.0",
"https-browserify": "^1.0.0",
"identicon.js": "2.3",
"light-bolt11-decoder": "^2.1.0",
"lnurl-pay": "^2.1.0",
"markdown-it": "13.0",
"markdown-it-deflist": "2.1",
"markdown-it-emoji": "^2.0.2",
"markdown-it-highlightjs": "3.6",
"markdown-it-sub": "1.0",
"markdown-it-sup": "1.0",
"markdown-it-task-lists": "2.1",
"nayuki-qr-code-generator": "^1.8.0",
"node-fetch": "^3.3.1",
"nostr-tools": "1.5.0",
"os": "^0.1.2",
"os-browserify": "^0.3.0",
"path": "^0.12.7",
"quasar": "^2.9.2",
"replace-in-file": "^6.3.5",
"siwe": "^1.1.6",
"sql.js": "^1.8.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tributejs": "^5.1.3",
"url": "^0.11.0",
"util": "^0.12.5",
"vue": "^3.0.0",
"vue-i18n": "^9.2.0-beta.40",
"vue-router": "^4.0.0",
"vuedraggable": "^4.1.0",
"vuex": "^4.0.2",
"wagmi": "^0.12.6",
"web3modal": "^1.9.12"
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@quasar/app-webpack": "^3.0.0",
"cors": "^2.8.5",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-vue": "^8.5.0",
"eslint-webpack-plugin": "^3.1.1",
"patch-package": "^6.5.1",
"push-dir": "^0.4.1",
"webpack-cli": "^5.0.1",
"workbox-webpack-plugin": "^6.0.0"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"engines": {
"node": ">= 12.22.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}