-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "@itwin/typescript-viewer-sample",
"description": "Using the iTwin Viewer with Typescript",
"main": "./index.ts",
"private": true,
"type": "module",
"license": "MIT",
"version": "0.0.1",
"scripts": {
"build": "run-p build:**",
"build:tsc": "tsc --project . 1>&2",
"build:esbuild": "node esbuild.js",
"build:assets": "node ./scripts/copyAssets.js",
"serve": "serve -l 3001 ./public",
"watch": "run-p \"build:** -- --watch\"",
"start": "run-p watch serve"
},
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "~0.1.1",
"@esbuild-plugins/node-modules-polyfill": "~0.1.2",
"cpx": "~1.5.0",
"dotenv": "^16.0.1",
"esbuild": "^0.13.15",
"npm-run-all": "^4.1.5",
"serve": "^13.0.2",
"typescript": "~4.7.0"
},
"dependencies": {
"@itwin/appui-abstract": "^3.3.4",
"@itwin/browser-authorization": "^0.5.1",
"@itwin/core-common": "^3.3.4",
"@itwin/core-frontend": "^3.3.4",
"@itwin/core-geometry": "^3.3.4",
"@itwin/core-orbitgt": "^3.3.4",
"@itwin/core-quantity": "^3.3.4",
"@itwin/imodels-access-frontend": "^1.0.1",
"@itwin/imodels-client-management": "^1.0.1",
"@itwin/webgl-compatibility": "^3.3.4"
}
}