-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (62 loc) · 1.48 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
{
"name": "sig-wallet",
"version": "1.0.0",
"private": true,
"author": "Spectiv <[email protected]>",
"description": "Spectiv SIG Wallet",
"homepage": ".",
"devDependencies": {
"electron": "^1.7.9",
"electron-builder": "^20.4.0",
"foreman": "^2.0.0",
"react-scripts": "0.9.0"
},
"dependencies": {
"asar": "^0.14.2",
"classnames": "^2.2.5",
"electron-builder-lib": "^20.4.0",
"electron-builder-squirrel-windows": "^20.4.0",
"ethers": "^2.2.6",
"lodash": "^4.17.5",
"moment": "^2.21.0",
"muicss": "^0.9.36",
"react": "^16.1.1",
"react-dom": "^16.1.1"
},
"main": "public/electron.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"dev": "nf start -p 3000",
"postinstall": "install-app-deps",
"electron-pack": "build -mw --c.extraMetadata.main=build/electron.js --c.extraMetadata.name='Spectiv SIG Wallet'",
"xpreelectron-pack": "yarn build"
},
"build": {
"appId": "com.spectiv.sigwallet",
"productName": "SIG Wallet",
"asar": true,
"directories": {
"buildResources": "assets",
"output": "dist"
},
"files": [
"node_modules/**/*",
"build/**/*"
],
"mac": {
"category": "financial"
},
"linux": {
"target": [
"deb"
]
},
"win": {
"target": "nsis"
}
}
}