-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "simple-itwinjs-cli-app",
"private": true,
"license": "MIT",
"scripts": {
"start": "node lib/Main.js",
"build": "tsc 1>&2",
"lint": "eslint -f visualstudio \"./src/**/*.ts\" 1>&2",
"clean": "rimraf lib"
},
"repository": {},
"dependencies": {
"@itwin/appui-abstract": "3.0.2",
"@itwin/core-backend": "3.0.2",
"@itwin/core-bentley": "3.0.2",
"@itwin/core-common": "3.0.2",
"@itwin/core-electron": "3.0.2",
"@itwin/core-frontend": "3.0.2",
"@itwin/core-geometry": "3.0.2",
"@itwin/core-i18n": "3.0.2",
"@itwin/core-quantity": "3.0.2",
"@itwin/ecschema-metadata": "3.0.2",
"@itwin/presentation-backend": "3.0.2",
"@itwin/presentation-common": "3.0.2",
"@itwin/webgl-compatibility": "3.0.2",
"@itwin/imodels-access-backend": "^1.0.1",
"@itwin/node-cli-authorization": "^0.9.0"
},
"devDependencies": {
"@itwin/build-tools": "3.0.2",
"@itwin/eslint-plugin": "3.0.2",
"@types/node": "^10.14.1",
"eslint": "^7.11.0",
"rimraf": "^3.0.2",
"typescript": "~4.4.0"
},
"eslintConfig": {
"plugins": [
"@itwin"
],
"extends": "plugin:@itwin/itwinjs-recommended"
}
}