-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
120 lines (120 loc) · 3.58 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
114
115
116
117
118
119
120
{
"name": "pshare",
"version": "1.0.3",
"description": "Secure and private peer to peer file sharing",
"homepage": "https://duality.solutions/pshare",
"license": "SEE LICENSE IN LICENSE.md",
"author": {
"name": "HiddenField",
"email": "info@hiddenfield.com",
"url": "https://duality.solutions/pshare"
},
"repository": {
"type": "git",
"url": "https://github.com/duality-solutions/pShare.git"
},
"build": {
"appId": "solutions.duality.pshare",
"productName": "pShare",
"mac": {
"category": "public.app-category.tools"
},
"linux": {
"target": [
"deb"
]
}
},
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"test": "yarn compile && jest",
"test:e2e": "yarn test --config jest.config.e2e.js",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"dist-linux": "yarn compile && electron-builder --linux"
},
"dependencies": {
"@types/got": "^9.4.4",
"blinq": "^2.0.2",
"chokidar": "^2.1.2",
"connected-react-router": "^5.0.1",
"devtron": "^1.4.0",
"electron-devtools-installer": "^2.2.4",
"electron-json-storage": "^4.1.4",
"electron-redux": "^1.3.1",
"fs-extra": "^7.0.1",
"got": "^9.6.0",
"history": "^4.7.2",
"is-in-subnet": "^1.9.0",
"mime-types": "^2.1.22",
"pify": "^4.0.1",
"progress-stream": "^2.0.0",
"qrcode-generator": "^1.4.3",
"react": "^16.8.6",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-dropzone": "^10.0.0",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-transition-group": "1.2.1",
"redbox-react": "^1.6.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.7",
"redux-localstorage": "^1.0.0-rc5",
"redux-localstorage-filter": "^0.1.1",
"redux-saga": "^0.16.2",
"reselect": "^4.0.0",
"rxjs": "^6.3.3",
"seedrandom": "^2.4.4",
"sjcl-git": "https://github.com/bitwiseshiftleft/sjcl.git#1.0.8",
"source-map-support": "^0.5.9",
"stream-buffers": "^3.0.2",
"styled-components": "^4.2.0",
"symbol-observable": "^1.2.0",
"ts-deep-equal": "^1.1.1",
"tslib": "^1.9.3",
"typesafe-actions": "^2.0.4",
"typescript": "^3.2.4",
"typescript-collections": "^1.3.2",
"uuid": "^3.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@types/electron-devtools-installer": "^2.2.0",
"@types/electron-json-storage": "^4.0.0",
"@types/es6-promise": "^3.3.0",
"@types/fs-extra": "^5.0.4",
"@types/history": "^4.7.2",
"@types/jest": "^23.3.10",
"@types/mime-types": "^2.1.0",
"@types/pify": "^3.0.2",
"@types/progress-stream": "^2.0.0",
"@types/react": "^16.7.9",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^6.0.10",
"@types/react-router": "^4.4.1",
"@types/react-router-dom": "^4.3.1",
"@types/react-transition-group": "1.1.5",
"@types/seedrandom": "^2.4.27",
"@types/stream-buffers": "^3.0.3",
"@types/styled-components": "^4.1.6",
"@types/uuid": "^3.4.4",
"@types/webdriverio": "^4.13.0",
"electron": "3.0.10",
"electron-builder": "^20.36.2",
"electron-webpack": "^2.6.1",
"electron-webpack-ts": "^3.1.0",
"jest": "^24.9.0",
"redux-saga-test-plan": "^3.7.0",
"spectron": "^5.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.11.0",
"webdriverio": "^4.14.1",
"webpack": "^4.26.0",
"xvfb-maybe": "^0.2.1"
}
}