-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 2.95 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
{
"name": "nft_viewer",
"version": "1.0.0",
"author": "https://nftea.gallery <[email protected]>",
"description": "An NFT viewing tool for Bitshares",
"homepage": "./",
"private": true,
"main": "./dist/electron.js",
"scripts": {
"start": "vite --port=3333",
"build": "vite build",
"dev": "concurrently -k \"cross-env BROWSER=none npm start\"",
"electron": "electron .",
"electron:start": "concurrently -k \"cross-env BROWSER=none vite preview --port 3333\" \"wait-on http://localhost:3333 && electronmon .\"",
"electron:package:macos-latest": "yarn build && electron-builder -m -c.extraMetadata.main=dist/electron.js --publish never",
"electron:package:windows-latest": "yarn build && electron-builder -w -c.extraMetadata.main=dist/electron.js --publish never",
"electron:package:ubuntu-latest": "yarn build && electron-builder -l -c.extraMetadata.main=dist/electron.js --publish never"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BTS-CM/NFT_Viewer.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/BTS-CM/NFT_Viewer/issues"
},
"build": {
"appId": "com.electron.NFT_Viewer",
"productName": "Bitshares NFT Viewer",
"artifactName": "nft_viewer.${ext}",
"files": [
"dist/**/*",
"./src/index.html",
"./src/*.js",
"node_modules/**/*"
],
"directories": {
"buildResources": "public"
},
"mac": {
"target": "dmg"
},
"win": {
"target": "portable"
},
"linux": {
"target": "deb"
}
},
"dependencies": {
"@babel/core": "^7.22.10",
"@emotion/react": "^11.11.1",
"@mantine/carousel": "^6.0.19",
"@mantine/core": "^6.0.19",
"@mantine/form": "^6.0.19",
"@mantine/hooks": "^6.0.19",
"@vitejs/plugin-react": "^4.0.4",
"assert": "^2.0.0",
"beet-js": "https://github.com/bitshares/beet-js#develop",
"bitsharesjs": "https://github.com/bitshares/bitsharesjs#develop",
"bitsharesjs-ws": "^6.0.0",
"buffer": "^6.0.3",
"embla-carousel-react": "^7.1.0",
"esbuild-plugin-polyfill-node": "^0.3.0",
"events": "^3.3.0",
"i18next": "^23.4.4",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.1.2",
"react-icons": "^4.10.1",
"react-qrcode-logo": "^2.9.0",
"react-router-dom": "^6.15.0",
"simple-websocket": "^9.1.0",
"stream-browserify": "^3.0.0",
"util": "^0.12.5",
"uuid": "^9.0.0",
"vite": "^4.4.9",
"zustand": "^4.4.1"
},
"devDependencies": {
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"electron": "^26.0.0",
"electron-builder": "^24.6.3",
"electronmon": "^2.0.2",
"esbuild": "^0.19.2",
"vite-plugin-electron": "^0.12.0",
"vite-plugin-i18next-loader": "^2.0.4",
"wait-on": "^7.0.1"
},
"browserslist": {
"production": [
"last 1 electron version"
],
"development": [
"last 1 electron version"
]
}
}