This repository has been archived by the owner on Jan 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
121 lines (121 loc) · 4.32 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
{
"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.17.0 <15.0"
},
"version": "1.0.9",
"private": true,
"scripts": {
"build": "run-p build:backend build:frontend && npm run copy",
"build:backend": "tsc -p tsconfig.backend.json && npm run build:backend:webpack",
"watch:backend": "tsc -p tsconfig.backend.json --watch",
"build:backend:webpack": "backend-webpack-tools build -s ./lib/backend/main.js -o ./build/app/",
"build:frontend": "cross-env DISABLE_NEW_JSX_TRANSFORM=true SKIP_PREFLIGHT_CHECK=true DISABLE_ESLINT=true GENERATE_SOURCEMAP=false USE_FAST_SASS=true TRANSPILE_DEPS=false DISABLE_TERSER=true 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": "eslint --config package.json --no-eslintrc \"./src/**/*.{ts,tsx}\" 1>&2",
"start": "npm run build:backend && run-p \"start:frontend\" \"electron:debug\"",
"start:frontend": "cross-env FAST_REFRESH=false DISABLE_NEW_JSX_TRANSFORM=true SKIP_PREFLIGHT_CHECK=true USE_FULL_SOURCEMAPS=true USE_FAST_SASS=true BROWSER=none react-scripts start",
"build:pack": "electron-builder --dir",
"build:dist": "electron-builder"
},
"browserslist": [
"electron 10.0.0"
],
"dependencies": {
"@bentley/backend-itwin-client": "~2.17.0",
"@bentley/bentleyjs-core": "~2.17.0",
"@bentley/context-registry-client": "~2.17.0",
"@bentley/ecschema-metadata": "~2.17.0",
"@bentley/electron-manager": "~2.17.0",
"@bentley/express-server": "~2.17.0",
"@bentley/frontend-authorization-client": "~2.17.0",
"@bentley/geometry-core": "~2.17.0",
"@bentley/icons-generic-webfont": "^1.0.0",
"@bentley/imodel-select-react": "^2.0.7",
"@bentley/imodelhub-client": "~2.17.0",
"@bentley/imodeljs-backend": "~2.17.0",
"@bentley/imodeljs-common": "~2.17.0",
"@bentley/imodeljs-frontend": "~2.17.0",
"@bentley/imodeljs-i18n": "~2.17.0",
"@bentley/imodeljs-markup": "~2.17.0",
"@bentley/imodeljs-quantity": "~2.17.0",
"@bentley/itwin-client": "~2.17.0",
"@bentley/orbitgt-core": "~2.17.0",
"@bentley/presentation-backend": "~2.17.0",
"@bentley/presentation-common": "~2.17.0",
"@bentley/presentation-components": "~2.17.0",
"@bentley/presentation-frontend": "~2.17.0",
"@bentley/product-settings-client": "~2.17.0",
"@bentley/rbac-client": "~2.17.0",
"@bentley/telemetry-client": "~2.17.0",
"@bentley/ui-abstract": "~2.17.0",
"@bentley/ui-components": "~2.17.0",
"@bentley/ui-core": "~2.17.0",
"@bentley/ui-framework": "~2.17.0",
"@bentley/ui-ninezone": "~2.17.0",
"@bentley/webgl-compatibility": "~2.17.0",
"minimist": "^1.2.5",
"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/backend-webpack-tools": "~2.17.0",
"@bentley/build-tools": "~2.17.0",
"@bentley/eslint-plugin": "~2.17.0",
"@bentley/react-scripts": "4.0.3",
"@types/electron-devtools-installer": "^2.2.0",
"@types/minimist": "^1.2.0",
"@types/react": "^16.14.5",
"@types/react-dom": "^16.9.11",
"@types/react-redux": "^6.0.14",
"@types/react-resize-detector": "^3.1.0",
"@typescript-eslint/eslint-plugin": "4.11.1",
"cpx": "^1.5.0",
"cross-env": "^5.1.4",
"electron": "^13.1.4",
"electron-builder": "22.10.5",
"electron-devtools-installer": "^2.2.3",
"eslint": "^7.11.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2",
"sass": "^1.29.0",
"typescript": "~4.1.0",
"webpack": "4.42.0"
},
"eslintConfig": {
"plugins": [
"@bentley"
],
"extends": "plugin:@bentley/ui",
"parserOptions": {
"project": [
"tsconfig.json",
"tsconfig.backend.json"
]
},
"settings": {
"react": {
"version": "detect"
}
}
}
}