-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.72 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
{
"name": "snippetfu",
"description": "SnippetFu lets you save and quickly copy snippets of text to the clipboard",
"version": "0.1.0",
"private": true,
"main": "public/electron.js",
"author": "Hariharan Srinath",
"license": "GPL-3.0-only",
"homepage": "./",
"dependencies": {
"@material/react-button": "^0.9.2",
"@material/react-chips": "^0.9.0",
"@material/react-dialog": "^0.9.2",
"@material/react-drawer": "^0.8.0",
"@material/react-fab": "^0.9.0",
"@material/react-icon-button": "^0.9.0",
"@material/react-list": "^0.9.0",
"@material/react-material-icon": "^0.9.0",
"@material/react-text-field": "^0.9.0",
"@material/react-top-app-bar": "^0.9.0",
"electron-is-dev": "^1.0.1",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-scripts": "2.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"preelectron-pack": "yarn build",
"electron-pack": "electron-builder"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"concurrently": "^4.1.0",
"electron": "^4.0.4",
"electron-builder": "^20.38.5",
"wait-on": "^3.2.0"
},
"build": {
"appId": "com.github.srinathh.snippetfu",
"files": [
"build/**/*"
],
"directories": {
"buildResources": "assets"
},
"win": {
"target": "portable"
},
"linux": {
"category": "Utility"
}
}
}