-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "super-snipping-tool",
"description": "A snipping tool that can snip anything on screen",
"author": "Kiran KN",
"homepage": "./",
"version": "0.1.0",
"main": "public/electron.js",
"scripts": {
"build": "react-scripts build",
"dist": "npm run build && build",
"eject": "react-scripts eject",
"electron": "electron .",
"electron-start": "node src/start-react",
"postinstall": "install-app-deps",
"pack": "build --dir",
"react-start": "cross-env BROWSER=none react-scripts start",
"start": "nf start -p 3000",
"test": "react-scripts test"
},
"dependencies": {
"@material-ui/core": "^3.4.0",
"@material-ui/icons": "^3.0.1",
"cross-env": "^5.2.0",
"ffmpeg": "0.0.4",
"is-electron": "^2.2.0",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.1"
},
"devDependencies": {
"concurrently": "^4.0.1",
"electron": "^3.0.8",
"electron-builder": "^20.33.2",
"electron-devtools-installer": "^2.2.4",
"electron-react-devtools": "^0.5.3",
"wait-on": "^3.2.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"build": {
"appId": "com.electron.super-snipping-tool",
"files": [
"src"
],
"directories": {
"buildResources": "public"
},
"win": {
"target": "NSIS",
"icon": "assets/icons/ms-icon-310x310.png"
}
},
"eslintConfig": {
"extends": "react-app"
}
}