-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.76 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.76 KB
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
{
"name": "TypeStation",
"description": "基于Bentley Systems, Inc开源的iTwinjs-core开发的桌面CAD软件。",
"license": "MIT",
"version": "0.1.0",
"engines": {
"node": "^18.0.0"
},
"private": true,
"scripts": {
"build": "npm run -s build:frontend-vite && npm run -s build:backend",
"build:stats": "cross-env OUTPUT_STATS=TRUE npm run build",
"build:backend": "tsc -p tsconfig.backend.json",
"build:backend-webpack": "backend-webpack-tools build -s ./lib/backend/DtaElectronMain.js -o ./lib/build/",
"build:frontend": "tsc",
"build:frontend-vite": "cross-env NODE_OPTIONS=--max_old_space_size=8192 vite build",
"build:bundle": "npm run build:frontend-vite && npm run build:backend-webpack",
"clean": "rimraf build lib .static-assets .rush/temp/package-deps*.json",
"docs": "",
"lint": "eslint -f visualstudio \"./src/**/*.ts\" 1>&2",
"start": "cross-env NODE_ENV=development run-p start:webserver start:electron",
"start:electron": "electron ./lib/backend/DtaElectronMain.js",
"start:electron-webpack": "electron ./lib/build/DtaElectronMain.js --trace-warnings --enable-logging",
"start:webserver": "cross-env NODE_ENV=development vite",
"start:backend": "node --max-http-header-size=16000 lib/backend/WebMain.js",
"start:servers": "run-p \"start:webserver\" \"start:backend\"",
"test": "",
"cover": "",
"copy:config": "internal-tools copy-config"
},
"repository": {},
"dependencies": {
"@bentley/icons-generic": "^1.0.34",
"@bentley/icons-generic-webfont": "^1.0.34",
"@itwin/appui-abstract": "4.0.7",
"@itwin/core-backend": "4.0.7",
"@itwin/core-bentley": "4.0.7",
"@itwin/core-common": "4.0.7",
"@itwin/core-frontend": "4.0.7",
"@itwin/core-geometry": "4.0.7",
"@itwin/core-i18n": "4.0.7",
"@itwin/core-markup": "4.0.7",
"@itwin/core-quantity": "4.0.7",
"@itwin/editor-backend": "4.0.7",
"@itwin/editor-common": "4.0.7",
"@itwin/editor-frontend": "4.0.7",
"@itwin/frontend-devtools": "4.0.7",
"@itwin/frontend-tiles": "4.0.7",
"@itwin/hypermodeling-frontend": "4.0.7",
"@itwin/map-layers-formats": "4.0.7",
"@itwin/object-storage-core": "^2.0.0",
"@itwin/reality-data-client": "^1.0.0",
"@itwin/webgl-compatibility": "4.0.7",
"body-parser": "^1.18.2",
"vhacd-js": "^0.0.1"
},
"devDependencies": {
"@itwin/backend-webpack-tools": "4.0.7",
"@itwin/build-tools": "4.0.7",
"@itwin/core-webpack-tools": "4.0.7",
"@itwin/eslint-plugin": "4.0.0-dev.44",
"@types/express": "^4.16.1",
"@types/express-ws": "^3.0.1",
"@types/fs-extra": "^4.0.7",
"browserslist-to-esbuild": "^1.2.0",
"child_process": "^1.0.2",
"cpx2": "^3.0.0",
"cross-env": "^5.1.4",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"electron": "^24.0.0",
"esbuild-plugin-external-global": "^1.0.1",
"eslint": "^8.44.0",
"express": "^4.16.3",
"express-ws": "^5.0.2",
"fs-extra": "^8.1.0",
"node-simctl": "~7.1.4",
"npm-run-all": "^4.1.5",
"null-loader": "^4.0.1",
"react": "^18.0.0",
"rimraf": "^3.0.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-visualizer": "^5.9.2",
"rollup-plugin-webpack-stats": "^0.2.0",
"ts-node": "^10.8.2",
"typescript": "~5.0.2",
"vite": "^4.3.9",
"vite-plugin-env-compatible": "^1.1.1",
"vite-plugin-inspect": "^0.7.28",
"webpack": "^5.76.0"
},
"browserslist": [
"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%"
]
}