-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "brownie-tub",
"version": "1.2.1",
"main": "public/electron.js",
"private": true,
"author": "cybersecmoo <50770700+cybersecmoo@users.noreply.github.com>",
"homepage": "./",
"build": {
"productName": "BROWNIE TUB",
"appId": "BrownieTub",
"files": [
"build/**/*",
"node_modules/**/*"
],
"linux": {
"target": [
"AppImage",
"deb"
],
"publish": [
"github"
]
},
"win": {
"target": "NSIS",
"publish": [
"github"
]
}
},
"devDependencies": {
"electron": "^7.3.2",
"electron-builder": "^22.8.0",
"electron-rebuild": "^1.11.0",
"install": "^0.13.0",
"mocha": "^7.2.0",
"nodemon": "^2.0.4",
"npm": "^6.14.7"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.10.0",
"crypto-js": "^4.0.0",
"pouchdb-adapter-node-websql": "^7.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "^3.4.3",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"rxdb": "^9.4.0",
"rxjs": "^6.6.2",
"superagent": "^5.2.2",
"superagent-proxy": "^2.0.0"
},
"scripts": {
"test": "mocha",
"clean": "rm shells* || del shells*",
"start": "react-scripts start",
"build": "react-scripts build",
"electron-start": "npm run build && electron .",
"postinstall": "electron-builder install-app-deps && electron-rebuild",
"preelectron-pack": "npm run build",
"electron-pack": "electron-builder -c.extraMetadata.main=build/electron.js",
"release": "electron-builder -c.extraMetadata.main=build/electron.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"snyk": true
}