-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
86 lines (86 loc) · 2.3 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
{
"name": "tezori3",
"version": "0.1.0",
"homepage": "https://cryptonomic.github.io/Tezori",
"private": true,
"dependencies": {
"@airgap/beacon-sdk": "^3.1.0",
"@ledgerhq/hw-app-tezos": "^6.27.1",
"@ledgerhq/hw-transport-webhid": "^6.27.1",
"@ledgerhq/logs": "^6.10.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^13.5.0",
"@tezos-domains/conseil-client": "^1.18.0",
"@tezos-domains/core": "^1.18.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.33",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"conseiljs": "^5.1.0",
"electron-is-dev": "^2.0.0",
"is-electron": "^2.2.1",
"js-logger": "^1.6.1",
"nft-image-proxy": "^1.0.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-router-dom": "^6.3.0",
"react-scripts": "4.0.3",
"typescript": "^4.6.4"
},
"author": {
"name": "Cryptonomic Inc.",
"email": "[email protected]"
},
"build": {
"appId": "tech.cryptonomic.tezori3",
"productName": "Tezori3",
"files": [
"build/**/*",
"electron/main.ts",
"package.json"
],
"linux": {
"target": "deb"
},
"extends": null
},
"main": "electron/main.ts",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --passWithNoTests",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"electron-dev": "concurrently \"cross-env BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-package": "npm run build && electron-builder build --publish never",
"electron-package:all": "npm run build && electron-builder build --publish never -mwl"
},
"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"
]
},
"devDependencies": {
"concurrently": "^7.2.1",
"cross-env": "^7.0.3",
"electron": "^19.0.3",
"electron-builder": "^23.0.3",
"gh-pages": "^4.0.0",
"wait-on": "^6.0.1"
}
}