This repository has been archived by the owner on Jan 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
145 lines (145 loc) · 4.32 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "dat-desktop",
"productName": "Dat Desktop",
"version": "3.0.3",
"license": "MIT",
"repository": "datproject/dat-desktop",
"description": "Peer to peer data sharing app built for humans.",
"author": {
"name": "Dat Team",
"email": "[email protected]"
},
"scripts": {
"prestart": "npm run build:dev",
"start": "cross-env NODE_ENV=development npm-run-all -p start:watch start:electron",
"start:electron": "cross-env NODE_V=\"$(node -v)\" NODE_ENV=development electron .",
"start:watch": "webpack --watch --mode=development",
"test": "npm run test:deps && npm run test:lint && npm run test:unit && npm run test:integration",
"test:deps": "cross-env DEBUG=* dependency-check . --detective precinct --entry app/index.js",
"test:lint": "prettier-standard 'app/**/*.js' 'tests/**/*.js' 'lib/**/*.js' 'unit-tests/*.js' && standard",
"test:unit": "cross-env NODE_ENV=test babel-tape-runner -r ./unit-tests/_helpers/*.js unit-tests/*.js",
"test:integration": "npm run build:prod && node ./tests/index.js",
"clean": "npm run clean:git && npm run clean:dirs",
"clean:git": "git clean -dfX",
"clean:dirs": "rm -rf ~/.electron && rm -f package-lock.json",
"update-rdt": "rm -rf dev/react-dev-tools && ced fmkadmapgofadopljbjfkapdkoienihi dev/react-dev-tools",
"build:dev": "webpack --mode=development --progress --profile --colors",
"build:prod": "webpack --mode=production --profile --colors",
"pack": "npm run build:prod && npm run pack:all",
"pack:os": "electron-builder --x64 --ia32 --dir",
"pack:all": "npm run pack:os -- --linux --mac --win",
"dist": "npm run build:prod && npm run dist:os",
"dist:os": "electron-builder --x64 --ia32",
"dist:all": "npm run dist:os -- --linux --mac --win",
"dist:publish": "npm run dist -- --publish onTagOrDraft",
"release": "standard-version"
},
"standard": {
"ignore": [
"dev/**"
]
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.0",
"babel-tape-runner": "^3.0.0",
"chrome-ext-downloader": "^1.0.4",
"clipboardy": "^1.2.3",
"cross-env": "^5.1.6",
"del": "^3.0.0",
"dependency-check": "^3.1.0",
"electron": "^6.1.7",
"electron-builder": "^21.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-adapter-react-helper": "^1.2.3",
"gaze": "^1.1.3",
"npm-run-all": "^4.1.3",
"precinct": "^5.1.0",
"prettier-standard": "^8.0.1",
"spectron": "^5.0.0",
"standard": "^12.0.1",
"tape": "^4.9.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"dat-colors": "^3.5.1",
"dat-doctor": "^1.4.0",
"dat-encoding": "^5.0.1",
"dat-icons": "^2.5.2",
"dat-node": "^3.5.8",
"electron-default-menu": "^1.0.1",
"minimist": "^1.2.0",
"mirror-folder": "^3.0.0",
"mkdirp-promise": "^5.0.1",
"ms": "^2.1.1",
"polished": "^2.3.0",
"prettier-bytes": "^1.0.4",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-file-drop": "^0.2.7",
"react-redux": "^5.0.7",
"react-swap": "^2.0.2",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"standard-version": "^6.0.1",
"styled-components": "^4.1.1",
"tachyons": "^4.9.1",
"util-promisify": "^2.1.0"
},
"build": {
"appId": "land.dat.dat-desktop",
"asar": true,
"directories": {
"output": "dist"
},
"mac": {
"category": "public.app-category.utilities",
"icon": "build/icon.icns"
},
"dmg": {
"icon": "build/icon.icns",
"contents": [
{
"x": 220,
"y": 200
},
{
"x": 448,
"y": 200,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"category": "Utility",
"packageCategory": "Utility",
"target": [
"AppImage",
"deb"
]
},
"deb": {
"synopsis": "Dat Desktop App"
},
"win": {
"target": "NSIS",
"icon": "build/icon.png"
},
"protocols": [
{
"name": "Dat Link",
"schemes": [
"dat"
]
}
]
}
}