-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
128 lines (128 loc) · 3.61 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "city-energy-analyst-gui",
"productName": "CityEnergyAnalyst-GUI",
"version": "3.39.3",
"description": "Official GUI of the City Energy Analyst tool",
"homepage": "http://www.cityenergyanalyst.com",
"repository": "github:architecture-building-systems/CityEnergyAnalyst-GUI",
"scripts": {
"dev": "vite",
"build": "vite build",
"dev-electron": "vite --mode electron",
"build-electron": "vite build --mode electron",
"preview": "vite preview",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"electron:dev": "concurrently \"yarn dev-electron\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "yarn build-electron && electron-builder build --publish never -c.mac.identity=null",
"electron:release": "yarn build-electron && electron-builder build --publish always"
},
"keywords": [],
"author": {
"name": "Architecture and Building Systems",
"email": "cea@arch.ethz.ch"
},
"maintainers": [
{
"name": "Reynold Mok",
"email": "reynold.mok@arch.ethz.ch"
}
],
"license": "MIT",
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react-swc": "^3.7.0",
"concurrently": "^8.2.2",
"electron": "^31.0.2",
"electron-builder": "^24.13.3",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-simple-import-sort": "^12.1.0",
"prettier": "^3.2.5",
"redux-logger": "^3.0.6",
"vite": "^5.3.1",
"wait-on": "^7.2.0"
},
"dependencies": {
"@ant-design/compatible": "^5.1.2",
"@ant-design/icons": "^5.3.0",
"@babel/polyfill": "^7.12.1",
"@deck.gl-community/editable-layers": "^9.0.0-alpha.1",
"@handsontable/react": "^3.1.2",
"@react-spring/web": "^9.7.3",
"@turf/turf": "^7.0.0",
"antd": "^5.14.1",
"axios": "^1.6.7",
"color-interpolate": "^1.0.5",
"connected-react-router": "^6.5.2",
"deck.gl": "^9.0.14",
"electron-log": "^5.1.2",
"electron-updater": "^6.3.1",
"handsontable": "^6",
"history": "^4.9.0",
"html-react-parser": "^5.1.12",
"maplibre-gl": "^4.0.0",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-map-gl": "^7.1.7",
"react-redux": "^8.0.5",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"redux": "^4.2.0",
"redux-thunk": "^2.4.2",
"socket.io-client": "^4.5.3",
"tabulator-tables": "^4.4.1"
},
"main": "electron/main.mjs",
"build": {
"appId": "com.cityenergyanalyst.gui",
"directories": {
"output": "out"
},
"files": [
"dist/**",
"electron/**"
],
"mac": {
"icon": "public/cea.icns",
"target": "default",
"files": [
"!node_modules/texture-compressor"
],
"extraResources": [
{
"from": "dependencies",
"to": "."
}
],
"publish": [
"github"
]
},
"win": {
"icon": "public/cea.ico",
"target": [
{
"target": "nsis",
"arch": "x64"
}
],
"publish": [
"github"
]
},
"nsis": {
"createDesktopShortcut": false,
"createStartMenuShortcut": false
}
},
"packageManager": "yarn@4.2.2"
}