forked from imodeljs/desktop-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 4.08 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
{
"name": "desktop-starter",
"description": "Desktop Starter",
"license": "MIT",
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"os": [
"win32",
"linux",
"darwin"
],
"engines": {
"node": ">=10.16.0 <13.0"
},
"version": "1.0.0",
"private": true,
"scripts": {
"build": "npm run build:backend && cross-env USE_FAST_SASS=true npm run build:frontend && npm run copy",
"build:prod": "npm run build:backend && npm run build:frontend && npm run copy",
"build:backend": "tsc -p tsconfig.backend.json",
"build:frontend": "react-scripts build",
"clean": "rimraf lib build dist",
"copy": "npm run copy:assets && npm run copy:enUS",
"copy:assets": "cpx \"./assets/*\" ./build/assets/",
"copy:enUS": "cpx \"./build/locales/en/*\" ./build/locales/en-US/",
"electron": "electron lib/backend/main.js",
"electron:debug": "cross-env NODE_ENV=development electron lib/backend/main.js",
"lint": "tslint -p . 1>&2",
"start": "npm run build && run-p \"start:frontend\" \"electron:debug\"",
"start:frontend": "cross-env USE_FAST_SASS=true BROWSER=none react-scripts start",
"build:pack": "electron-builder --dir"
},
"browserslist": [
"electron 6.0.0",
"last 4 chrome version",
"last 4 firefox version",
"last 4 safari version",
"last 4 ios version",
"last 4 ChromeAndroid version",
"last 4 edge version",
"not dead",
"not <0.2%"
],
"build": {
"appId": "Bentley.DesktopStarter",
"productName": "Desktop Starter",
"extends": "react-cra",
"files": [
"build/**/*",
"lib/**/*",
"node_modules/**/*",
"!**/*.map",
"!**/*.d.ts",
"!**/*.tsbuildinfo"
],
"extraMetadata": {
"main": "lib/backend/main.js"
},
"asarUnpack": [
"build/assets/**/*"
],
"mac": {
"category": "public.app-category.developer-tools"
}
},
"dependencies": {
"@bentley/backend-itwin-client": "^2.2.0",
"@bentley/bentleyjs-core": "^2.2.0",
"@bentley/context-registry-client": "^2.2.0",
"@bentley/ecschema-metadata": "^2.2.0",
"@bentley/electron-manager": "^2.2.0",
"@bentley/express-server": "^2.2.0",
"@bentley/frontend-authorization-client": "^2.2.0",
"@bentley/geometry-core": "^2.2.0",
"@bentley/icons-generic-webfont": "^1.0.0",
"@bentley/imodel-select-react": "^2.0.1",
"@bentley/imodelhub-client": "^2.2.0",
"@bentley/imodeljs-backend": "^2.2.0",
"@bentley/imodeljs-common": "^2.2.0",
"@bentley/imodeljs-frontend": "^2.2.0",
"@bentley/imodeljs-i18n": "^2.2.0",
"@bentley/imodeljs-markup": "^2.2.0",
"@bentley/imodeljs-quantity": "^2.2.0",
"@bentley/itwin-client": "^2.2.0",
"@bentley/orbitgt-core": "^2.2.0",
"@bentley/presentation-backend": "^2.2.0",
"@bentley/presentation-common": "^2.2.0",
"@bentley/presentation-components": "^2.2.0",
"@bentley/presentation-frontend": "^2.2.0",
"@bentley/product-settings-client": "^2.2.0",
"@bentley/ui-abstract": "^2.2.0",
"@bentley/ui-components": "^2.2.0",
"@bentley/ui-core": "^2.2.0",
"@bentley/ui-framework": "^2.2.0",
"@bentley/ui-ninezone": "^2.2.0",
"@bentley/webgl-compatibility": "^2.2.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-redux": "^7.2.0",
"react-resize-detector": "^3.4.0",
"redux": "^4.0.0"
},
"devDependencies": {
"@bentley/build-tools": "^2.2.0",
"@bentley/react-scripts": "3.4.1",
"@types/electron-devtools-installer": "^2.2.0",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^6.0.14",
"@types/react-resize-detector": "^3.1.0",
"cpx": "^1.5.0",
"cross-env": "^5.1.4",
"electron": "^8.3.4",
"electron-builder": "^22.7.0",
"electron-devtools-installer": "^2.2.3",
"node-sass": "^4.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2",
"tslint": "^5.16.0",
"typescript": "~3.7.4",
"webpack": "4.42.0"
}
}