forked from wexond/browser-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.2 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
{
"name": "wexond",
"version": "0.3.0",
"description": "Extensible, fast and innovative web browser with material UI.",
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Nersent/wexond.git"
},
"scripts": {
"start": "cross-env NODE_ENV=dev electron main.js",
"watch": "npm run build:dev && webpack-dev-server --hot --inline --port 8080 --colors --progress",
"build:dev": "rimraf public/build && webpack",
"build:production": "rimraf public/build && rimraf dist && cross-env NODE_ENV=production webpack --define process.env.NODE_ENV=production --progress --colors",
"compile:win32": "npm run build:production && electron-builder -w -p always",
"compile:darwin": "npm run build:production && electron-builder -m -p always",
"compile:linux": "npm run build:production && electron-builder -l -p always",
"postinstall": "npm run electron:rebuild",
"electron:rebuild": "electron-builder install-app-deps"
},
"homepage": "https://github.com/Nersent/wexond#readme",
"keywords": [
"web-browser",
"webpack",
"material",
"electron",
"react",
"mobx",
"sass"
],
"bugs": {
"url": "https://github.com/Nersent/wexond/issues"
},
"author": {
"name": "Nersent",
"email": "[email protected]"
},
"license": "Apache-2.0",
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"cross-env": "5.1.1",
"css-loader": "0.28.7",
"devtron": "1.4.0",
"electron": "1.7.11",
"electron-builder": "19.49.0",
"mobx": "3.4.1",
"mobx-react": "4.3.5",
"node-sass": "4.7.2",
"react": "16.2.0",
"react-dom": "16.2.0",
"rimraf": "2.6.2",
"sass-loader": "6.0.6",
"style-loader": "0.19.1",
"uglifyjs-webpack-plugin": "1.1.4",
"url-loader": "0.6.2",
"webpack": "3.10.0",
"webpack-dev-server": "2.9.7"
},
"dependencies": {
"ad-block": "Sential/ad-block",
"electron-updater": "2.17.6",
"sqlite3": "3.1.13"
}
}