-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.93 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
{
"name": "coinbarn-wallet",
"description": "Coinbarn wallet for Ergo platform",
"version": "0.1.2",
"private": true,
"homepage": "./",
"dependencies": {
"@coinbarn/ergo-ts": "^0.2.19",
"bip32": "^2.0.4",
"bip39": "^3.0.2",
"electron-is-dev": "^1.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@types/react": "^16.9.15",
"@types/react-dom": "^16.9.4",
"concurrently": "^5.0.2",
"electron": "^7.1.7",
"electron-builder": "^21.2.0",
"prettier": "^1.19.1",
"react-scripts": "^3.3.0",
"stylus": "^0.54.7",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2",
"wait-on": "^3.3.0"
},
"main": "public/electron.js",
"scripts": {
"start": "react-scripts start",
"build": "stylus src/css/index.styl && react-scripts build && cp -r build coinbarn && zip -r coinbarn.zip coinbarn",
"test": "react-scripts test",
"eject": "react-scripts eject",
"buildCss": "stylus src/css/index.styl",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" \"public/**/*.js\"",
"lint": "tslint -p tsconfig.json --fix",
"electron-dev": "ELECTRON_START_URL=http://localhost:3000 electron .",
"electron-pack": "yarn build && yarn electron-builder"
},
"eslintConfig": {
"extends": "react-app"
},
"build": {
"appId": "org.coinbarn.coinbarn-extension",
"files": [
"build/**/*",
"node_modules/**/*"
],
"linux": {
"category": "Finance",
"target": [
"AppImage",
"deb"
]
},
"directories": {
"buildResources": "assets"
}
},
"author": "Coinbarn <coinbarn@protonmail.com>",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}