-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.52 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
{
"name": "psyneulinkview",
"author": {
"name": "Dillon Smith",
"email": "[email protected]"
},
"version": "0.3.2",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@blueprintjs/core": "^3.19.1",
"@grpc/grpc-js": "^1.1.5",
"@grpc/proto-loader": "^0.5.2",
"@nivo/core": "^0.65.0",
"@nivo/line": "^0.65.1",
"antd": "^4.5.4",
"chart.js": "^2.9.3",
"compare-versions": "^3.6.0",
"electron-is-dev": "^1.1.0",
"electron-log": "^3.0.9",
"fix-path": "^2.1.0",
"formik-persist": "^1.1.0",
"graphviz": "0.0.9",
"jquery": "^3.5.1",
"jsdoc": "^3.6.6",
"lodash": "^4.17.21",
"mathjs": "^6.6.4",
"rc-color-picker": "^1.2.6",
"re-resizable": "^6.5.4",
"react-chartjs-2": "^2.10.0",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^16.13.1",
"react-grid-layout": "^1.0.0",
"react-redux": "^7.2.0",
"react-scripts": "3.2.0",
"react-window": "^1.8.5",
"recharts": "^1.8.5",
"redux": "^4.0.5",
"redux-form": "^8.3.6",
"reselect": "^4.0.0"
},
"scripts": {
"start": "react-scripts start",
"react-build": "react-scripts build",
"electron-build": "electron-builder",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron-dev": "concurrently \"yarn start\" \"wait-on http://localhost:3000 && electron . --remote-debugging-port=9222\"",
"electron-pack": "yarn build --em.main=build/electron.js",
"build": "yarn react-build && yarn electron-build",
"preelectron-pack": "yarn build"
},
"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"
]
},
"devDependencies": {
"concurrently": "^5.0.0",
"d3": "^5.16.0",
"electron": "10.1.2",
"electron-builder": "^21.2.0",
"react": "^16.10.2",
"react-highlight-words": "^0.16.0",
"wait-on": "^3.3.0"
},
"main": "public/electron.js",
"build": {
"appId": "com.example.electron-cra",
"files": [
"build/**/*",
"node_modules/**/*",
"src/**/*",
"config-template.json"
],
"directories": {
"buildResources": "assets"
},
"linux": {
"target": "snap"
},
"asar": true,
"asarUnpack": [
"build/**/*",
"src/**/*",
"config-template.json"
]
},
"homepage": "./"
}