This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
113 lines (113 loc) · 3.56 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
110
111
112
113
{
"name": "iota-devnet-wallet",
"description": "IOTA 2.0 DevNet Wallet",
"version": "0.7.0",
"author": "Martyn Janes <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/pollen-wallet.git"
},
"license": "MIT",
"dependencies": {
"@craco/craco": "^6.1.2",
"@electron/remote": "^1.1.0",
"blakejs": "^1.1.0",
"classnames": "^2.3.1",
"electron-is-dev": "^2.0.0",
"electron-window-state": "^5.0.3",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-icons": "^3.11.0",
"react-router-dom": "^5.1.2",
"react-scripts": "^4.0.3",
"tweetnacl": "^1.0.3"
},
"engines": {
"node": "16.x.x"
},
"scripts": {
"start": "cross-env PORT=3001 craco start",
"lint": "eslint src --ext .tsx,.ts",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"sass-lint": "sass-lint -v -c ./.sass-lint.yml",
"start-electron": "concurrently \"cross-env BROWSER=none npm run start\" \"wait-on http://localhost:3001 && electron .\"",
"package": "npm run build && electron-builder",
"package-win": "electron-builder --win --x64 --publish=never",
"package-mac": "electron-builder --mac --x64 --publish=never",
"package-linux": "electron-builder --linux --x64 --publish=never"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.45",
"@types/node-fetch": "^2.5.10",
"@types/react": "^16.14.6",
"@types/react-dom": "^16.9.13",
"@types/react-router-dom": "^5.1.7",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"electron": "^12.0.7",
"electron-builder": "^22.11.4",
"electron-notarize": "^1.0.0",
"husky": "^6.0.0",
"node-sass": "^6.0.0",
"sass-lint": "^1.13.1",
"typescript": "^3.9.9",
"wait-on": "^5.3.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"homepage": "./",
"main": "./public/electron.js",
"build": {
"productName": "IOTA DevNet Wallet",
"artifactName": "iota-devnet-wallet-${version}.${ext}",
"copyright": "IOTA Foundation",
"directories": {
"output": "./out"
},
"files": [
"package.json",
"!build/**/*.map",
"!node_modules",
"node_modules/@electron",
"node_modules/electron-is-dev/**/*.js",
"node_modules/electron-window-state/**/*.js",
"node_modules/jsonfile/**/*.js",
"node_modules/mkdirp/**/*.js",
"node_modules/blakejs/**/*.js"
],
"appId": "org.iota.pollen-wallet",
"afterSign": "./scripts/notarize.macos.js",
"win": {
"icon": "./public/logo.png"
},
"mac": {
"entitlements": "./entitlements.mac.plist",
"entitlementsInherit": "./entitlements.mac.plist",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"asarUnpack": [
"**/*.node"
],
"icon": "./public/icon.icns"
},
"dmg": {
"title": "${productName}",
"sign": false
}
}
}