-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 3.42 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
104
105
106
107
108
109
{
"name": "nft_tool",
"version": "1.0.1",
"author": "https://nftea.gallery <[email protected]>",
"description": "An NFT issuance tool for the Bitshares blockchain",
"homepage": "./",
"private": true,
"main": "./dist/electron.js",
"scripts": {
"start": "vite --port=3000",
"build": "vite build",
"dev": "concurrently -k \"cross-env BROWSER=none npm start\"",
"lint": "eslint --ext .js,.jsx src",
"lint.fix": "eslint --ext .js,.jsx src --fix",
"format": "prettier --write ./src/*.* --config ./.prettierrc",
"electron": "electron .",
"electron:start": "concurrently -k \"cross-env BROWSER=none vite preview --port 3000\" \"wait-on http://localhost:3000 && electronmon .\"",
"test": "concurrently -k \"cross-env BROWSER=none vite build\" \"electron-builder -w -c.extraMetadata.main=dist/electron.js\"",
"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-22.04": "yarn build && electron-builder -l -c.extraMetadata.main=dist/electron.js --publish never"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grctest/nft_tool.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/grctest/nft_tool/issues"
},
"build": {
"appId": "com.electron.nft_tool",
"productName": "Bitshares NFT issuance tool",
"artifactName": "nft_tool.${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.9",
"@emotion/react": "^11.11.1",
"@mantine/core": "^6.0.17",
"@mantine/dropzone": "^6.0.17",
"@mantine/form": "^6.0.17",
"@mantine/hooks": "^6.0.17",
"@vitejs/plugin-react": "^4.0.3",
"assert": "^2.0.0",
"beet-js": "https://github.com/bitshares/beet-js#develop",
"bitsharesjs": "^6.0.0",
"bitsharesjs-ws": "^6.0.0",
"buffer": "^6.0.3",
"eslint": "^8.45.0",
"events": "^3.3.0",
"i18next": "^23.2.11",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.2",
"react-icons": "^4.10.1",
"react-router-dom": "^6.14.2",
"simple-websocket": "^9.1.0",
"stream-browserify": "^3.0.0",
"util": "^0.12.5",
"uuid": "^9.0.0",
"vite": "^4.4.6",
"zustand": "^4.3.9"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"electron": "^25.3.1",
"electron-builder": "^24.4.0",
"electronmon": "^2.0.2",
"esbuild": "^0.18.16",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"vite-plugin-electron": "^0.12.0",
"wait-on": "^7.0.1"
},
"browserslist": {
"production": [
"last 1 electron version"
],
"development": [
"last 1 electron version"
]
}
}