-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.88 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
{
"name": "animationtest",
"version": "0.1.0",
"private": true,
"dependencies": {
"@bentley/backend-itwin-client": "^2.14.0",
"@bentley/bentleyjs-core": "^2.14.0",
"@bentley/build-tools": "^2.14.0",
"@bentley/context-registry-client": "^2.14.0",
"@bentley/ecschema-metadata": "^2.14.0",
"@bentley/electron-manager": "^2.14.0",
"@bentley/express-server": "^2.14.0",
"@bentley/frontend-authorization-client": "^2.14.0",
"@bentley/geometry-core": "^2.14.0",
"@bentley/icons-generic-webfont": "^1.0.15",
"@bentley/imodel-select-react": "^2.0.7",
"@bentley/imodelhub-client": "^2.14.0",
"@bentley/imodeljs-backend": "^2.14.0",
"@bentley/imodeljs-common": "^2.14.0",
"@bentley/imodeljs-frontend": "^2.14.0",
"@bentley/imodeljs-i18n": "^2.14.0",
"@bentley/imodeljs-markup": "^2.14.0",
"@bentley/imodeljs-quantity": "^2.14.0",
"@bentley/itwin-client": "^2.14.0",
"@bentley/orbitgt-core": "^2.14.0",
"@bentley/presentation-backend": "^2.14.0",
"@bentley/presentation-common": "^2.14.0",
"@bentley/presentation-components": "^2.14.0",
"@bentley/presentation-frontend": "^2.14.0",
"@bentley/product-settings-client": "^2.14.0",
"@bentley/rbac-client": "^2.14.0",
"@bentley/react-scripts": "^4.0.3",
"@bentley/telemetry-client": "^2.14.0",
"@bentley/ui-abstract": "^2.14.0",
"@bentley/ui-components": "^2.14.0",
"@bentley/ui-core": "^2.14.0",
"@bentley/ui-framework": "^2.14.0",
"@bentley/ui-ninezone": "^2.14.0",
"@bentley/webgl-compatibility": "^2.14.0",
"@itwin/desktop-viewer-react": "^1.0.7",
"@reduxjs/toolkit": "^1.6.0",
"@types/electron-devtools-installer": "^2.2.0",
"@types/minimist": "^1.2.0",
"@types/node": "^14.0.19",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.9",
"cross-env": "^5.2.1",
"dotenv-flow": "^3.2.0",
"electron": "^11.1.0",
"electron-devtools-installer": "^2.2.3",
"minimist": "^1.2.5",
"npm-run-all": "^4.1.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "^7.2.0",
"sass": "^1.29.0",
"typescript": "~4.3.0",
"webpack": "4.42.0"
},
"scripts": {
"start": "yarn build:backend && run-p \"start:frontend\" \"electron:debug\"",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:backend": "tsc -p tsconfig.backend.json",
"build:frontend": "yarn pseudolocalize && react-scripts build",
"electron": "electron lib/backend/main.js",
"electron:debug": "cross-env NODE_ENV=development electron lib/backend/main.js",
"start:frontend": "react-scripts start",
"pseudolocalize": "betools pseudolocalize --englishDir ./public/locales/en --out ./public/locales/en-PSEUDO"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"electron 8.0.0"
]
}