forked from yehuozhili/bigbear-mindmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.07 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "bigbear-mindmap",
"version": "0.1.3",
"private": false,
"main": "main.js",
"author": "yehuozhili",
"description": "a mindmap build with electron",
"dependencies": {
"electron-is-dev": "^1.2.0",
"electron-store": "^6.0.0",
"electron-updater": "^4.3.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron": "electron .",
"dev": "concurrently \"wait-on http://localhost:3000 && npm run electron \" \"cross-env BROWSER=none npm start\"",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"prepack": "npm run build",
"predist": "npm run build",
"release": "electron-builder",
"prerelease": "npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"homepage": "./",
"publish": [
"github"
],
"build": {
"appId": "bigbear-mindmap",
"productName": "bigbear-mindmap",
"copyright": "Copyright © 2020 ${author}",
"extends": null,
"files": [
"build/**/*",
"node_modules/**/*",
"settings/**/*",
"package.json",
"main.js"
],
"directories": {
"buildResources": "resources"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"nsis",
"msi"
]
},
"linux": {
"target": [
"deb",
"rpm",
"AppImage"
],
"category": "Development"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"electron-builder": "^22.8.0",
"react-scripts": "3.4.3",
"wait-on": "^5.2.0",
"electron": "^9.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"bigbear-ui": "^1.0.0",
"@antv/g6": "^3.6.1"
}
}