This repository was archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.07 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.07 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
{
"name": "ator-dashboard",
"version": "0.2.0",
"author": "Jim Toth <jim@artby.city>",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/ATOR-Development/ator-dashboard"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"deploy": "yarn generate && node deploy.mjs",
"deploy:balance:ar": "irys balance jp0QaS_Zai2hGaB-yRvAIMEtodmH_iHr0drpZxAZQtU -t arweave",
"deploy:fund:ar": "irys fund 500000000000 -t arweave -w ./.secrets/dashboard-deployer-keyfile.json",
"deploy:ar": "irys upload-dir ./.output/public --index-file index.html -t arweave -w ./.secrets/dashboard-deployer-keyfile.json",
"deploy:balance:eth": "irys balance 0xc93F6314e3a8854CC00Db79Cd0883316554AF437 -t ethereum",
"deploy:fund:eth": "irys fund 5000000000000000 -t ethereum -w \"$(cat ./.secrets/dashboard-deployer-eth-keyfile)\"",
"deploy:eth": "irys upload-dir ./.output/public --index-file index.html -t ethereum -w \"$(cat ./.secrets/dashboard-deployer-eth-keyfile)\"",
"lint": "eslint ."
},
"devDependencies": {
"@types/animejs": "^3.1.7",
"@types/lodash": "^4.14.194",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-plugin-vue": "^9.17.0",
"nuxt": "^3.6.3",
"vue-eslint-parser": "^9.3.1"
},
"dependencies": {
"@irys/sdk": "^0.2.1",
"@mdi/font": "^7.1.96",
"@metamask/onboarding": "^1.0.1",
"@pinia/nuxt": "^0.4.11",
"animejs": "^3.2.1",
"ardb": "^1.1.10",
"arweave": "^1.13.7",
"ethers": "^6.6.4",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"pinia": "^2.1.6",
"sass": "^1.59.2",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"vuetify": "^3.1.8",
"warp-contracts": "1.4.21",
"warp-contracts-plugin-deploy": "1.0.9",
"warp-contracts-plugin-ethers": "1.0.7",
"warp-contracts-plugin-signature": "1.0.17"
},
"overrides": {
"vue": "latest"
}
}