forked from nftstorage/nftup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.53 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
{
"name": "nftup",
"version": "1.0.1",
"private": true,
"description": "NFT.Storage uploader",
"main": "public/electron.js",
"homepage": ".",
"build": {
"appId": "storage.nft.nftup",
"productName": "NFT UP",
"mac": {
"category": "public.app-category.utilities",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"target": {
"target": "default",
"arch": [
"x64",
"arm64",
"universal"
]
}
},
"dmg": {
"background": "build/background.png",
"contents": [
{
"x": 110,
"y": 190
},
{
"x": 430,
"y": 190,
"type": "link",
"path": "/Applications"
}
],
"sign": false
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"afterSign": "scripts/notarize.js"
},
"scripts": {
"start": "concurrently \"BROWSER=none npm run start:ui\" \"wait-on http://localhost:3000 && npm run start:electron\"",
"start:ui": "react-scripts start",
"start:electron": "electron .",
"build": "npm run build:ui && npm run build:electron",
"build:ui": "react-scripts build",
"build:electron": "electron-builder",
"test": "react-scripts test"
},
"repository": "https://github.com/nftstorage/nftup",
"author": "Alan Shaw",
"license": "Apache-2.0 OR MIT",
"dependencies": {
"bytes": "^3.1.2",
"electron-is-dev": "^2.0.0",
"electron-store": "^8.0.1",
"files-from-path": "^0.2.5",
"format-number": "^3.0.0",
"nft.storage": "^6.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"concurrently": "^7.0.0",
"dotenv": "^16.0.0",
"electron": "^17.2.0",
"electron-builder": "^22.14.13",
"electron-notarize": "^1.2.1",
"react-scripts": "5.0.0",
"standard": "^16.0.4",
"wait-on": "^6.0.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}