-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.48 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.48 KB
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
{
"name": "task-manager",
"version": "1.0.0",
"private": true,
"dependencies": {
"@intereact/ripple": "^1.1.1",
"electron-is-dev": "^1.0.1",
"gist-client": "^1.1.0",
"gists": "^2.0.0",
"node-sass": "^4.11.0",
"react": "^16.8.3",
"react-customscroll": "^4.0.6",
"react-dom": "^16.8.3",
"react-outside-click-handler": "^1.2.2",
"react-ripples": "^1.1.2",
"react-scripts": "3.0.0",
"react-tabs": "^3.0.0",
"react-timer-simple": "^2.1.2",
"react-transition-group": "^2.7.0",
"typescript": "^3.4.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"electron-dev": "concurrently \"yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"dist": "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.5",
"electron-builder": "^20.38.5",
"wait-on": "^3.2.0"
},
"main": "public/electron.js",
"build": {
"appId": "com.ip.app",
"productName": "Задачник",
"target": "NSIS",
"win": {
"target": [
"portable"
],
"icon": "public/ico.ico"
},
"mac": {
"target": [
"mas"
],
"icon": "public/ico.icns"
},
"portable": {
"artifactName": "task-manager.exe"
}
}
}