-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"private": true,
"name": "unnamed-gopher-client",
"version": "0.0.1",
"description": "",
"author": {
"name": "zenoamaro",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"gopher",
"gopherhole"
],
"homepage": "https://github.com/zenoamaro/unnamed-gopher-client",
"repository": "[email protected]:zenojevski/unnamed-gopher-client.git",
"main": "build/main.js",
"scripts": {
"start": "electron .",
"build": "webpack --mode production",
"watch": "webpack-dev-server --watch --mode development",
"dist": "npm run clean && npm run build && electron-builder build",
"clean": "rm -rf build dist",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"dependencies": {
"immer": "^6.0.9",
"into-stream": "^5.1.1",
"lodash": "^4.17.15",
"multipipe": "^4.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"react-markdown": "^4.3.1",
"react-sortable-hoc": "^1.11.0",
"readable-stream-clone": "0.0.7",
"styled-components": "^5.1.1",
"through2": "^3.0.1",
"use-debounce": "^3.4.2",
"v8-compile-cache": "^2.1.1"
},
"devDependencies": {
"@types/electron-devtools-installer": "^2.2.0",
"@types/lodash": "^4.14.153",
"@types/multipipe": "^3.0.0",
"@types/node": "^12.12.42",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-sortable-hoc": "^0.7.1",
"@types/styled-components": "^5.1.0",
"@types/through2": "^2.0.36",
"electron": "^8.3.1",
"electron-builder": "^22.7.0",
"electron-devtools-installer": "^3.0.0",
"file-loader": "^6.0.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}