forked from wexond/browser-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.35 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
{
"name": "wexond",
"version": "3.1.0",
"description": "Extensible, fast and innovative web browser with material UI.",
"keywords": [
"web-browser",
"material",
"electron",
"react",
"mobx",
"styled-components"
],
"homepage": "https://github.com/wexond/wexond#readme",
"main": "build/main.bundle.js",
"author": "Eryk Rakowski <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/wexond/wexond.git"
},
"bugs": {
"url": "https://github.com/wexond/wexond/issues"
},
"scripts": {
"dev": "npm run extensions && concurrently \"cross-env ENV='dev' webpack-dev-server --config webpack.config.renderer.js\" \" cross-env ENV='dev' webpack\" \"cross-env ENV='dev' webpack-dev-server --config webpack.config.web.js\"",
"build": "npm run extensions && concurrently \"webpack --config webpack.config.renderer.js\" \"webpack\" \"webpack --config webpack.config.web.js\"",
"start": "cross-env ENV='dev' electron .",
"compile-win32": "npm run build && electron-builder -w -p always",
"compile-darwin": "npm run build && electron-builder -m -p always",
"compile-linux": "npm run build && electron-builder -l -p always",
"compile": "node scripts/compile.js",
"lint": "eslint \"src/**/*.ts*\" \"src/**/*.tsx*\"",
"lint-fix": "npm run lint -- --fix",
"postinstall": "electron-builder install-app-deps",
"extensions": "node scripts/extensions.js"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/chrome": "0.0.88",
"@types/file-type": "^10.9.1",
"@types/gsap": "1.20.2",
"@types/keytar": "^4.4.0",
"@types/nedb": "1.8.9",
"@types/node": "12.7.5",
"@types/node-fetch": "^2.5.1",
"@types/pretty-bytes": "^5.2.0",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"@types/styled-components": "4.1.19",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"axios": "0.19.0",
"cache-loader": "^4.1.0",
"concurrently": "^4.1.2",
"cross-env": "6.0.0",
"electron": "^6.0.10",
"electron-builder": "21.2.0",
"electron-updater": "4.1.2",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"extract-zip": "^1.6.7",
"file-loader": "^4.2.0",
"file-type": "12.3.0",
"gsap": "2.1.3",
"hard-source-webpack-plugin": "^0.13.1",
"html-webpack-plugin": "^3.2.0",
"icojs": "0.13.1",
"mkdirp": "^0.5.1",
"mobx": "5.13.0",
"mobx-react-lite": "1.4.1",
"nedb": "1.8.0",
"node-bookmarks-parser": "^2.0.0",
"prettier": "1.18.2",
"pretty-bytes": "5.3.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-hot-loader": "4.12.13",
"react-windows-controls": "1.1.1",
"styled-components": "^5.0.0-beta.8",
"tldts-experimental": "5.4.1",
"ts-loader": "^6.1.0",
"typescript": "3.6.3",
"v8-compile-cache": "^2.1.0",
"webpack": "4.40.2",
"webpack-cli": "3.3.9",
"webpack-dev-server": "^3.8.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"electron-extensions": "2.0.2",
"extract-file-icon": "0.3.1",
"keytar": "^5.0.0-beta.0",
"mouse-hooks": "0.4.1",
"node-fetch": "^2.6.0",
"node-vibrant": "3.2.0-alpha",
"node-window-manager": "1.1.0",
"@cliqz/adblocker-electron": "^1.1.0"
}
}