-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.61 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
{
"name": "@itwin/mobile-ui-react",
"version": "0.22.15",
"description": "Bentley iTwin Mobile UI module",
"repository": {
"type": "git",
"url": "https://github.com/iTwin/mobile-ui-react"
},
"license": "MIT",
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"main": "lib/mobile-ui-react.js",
"types": "lib/mobile-ui-react.d.ts",
"files": [
"lib/**/*",
"!lib/**/*.map"
],
"scripts": {
"build": "npm run images:gen && npm run copy:assets && tsc 1>&2",
"clean": "rimraf lib",
"copy:assets": "cpx \"./src/**/*.{*css,svg}\" ./lib && cpx \"./public/**/*\" ./lib/public",
"images:gen": "rimraf src/mobile-ui-react/images-tsx && svgr --typescript src/mobile-ui-react/images --out-dir src/mobile-ui-react/images-tsx --no-svgo --no-prettier --memo --svg-props className=\"core-icons-svgSprite\"",
"lint": "eslint -f visualstudio \"./src/**/*.{ts,tsx}\" 1>&2",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@bentley/icons-generic-webfont": "1.0.34",
"@itwin/appui-abstract": "4.9.5",
"@itwin/appui-react": "4.17.1",
"@itwin/components-react": "4.17.1",
"@itwin/core-bentley": "4.9.5",
"@itwin/core-common": "4.9.5",
"@itwin/core-frontend": "4.9.5",
"@itwin/core-geometry": "4.9.5",
"@itwin/core-i18n": "4.9.5",
"@itwin/core-markup": "4.9.5",
"@itwin/core-orbitgt": "4.9.5",
"@itwin/core-quantity": "4.9.5",
"@itwin/core-react": "4.17.1",
"@itwin/imodel-components-react": "4.17.1",
"@itwin/mobile-sdk-core": "0.22.15",
"@itwin/presentation-common": "4.9.5",
"@itwin/presentation-frontend": "4.9.5",
"@itwin/webgl-compatibility": "4.9.5",
"classnames": "^2.2.6",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-redux": "^7.2.4",
"redux": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@itwin/eslint-plugin": "4.0.0-dev.48",
"@svgr/cli": "^6.3.1",
"@types/node": "10.14.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.19",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"cpx2": "^4.2.0",
"eslint": "^8.36.0",
"eslint-plugin-react-hooks": "^4.6.0",
"relative-deps": "^1.0.7",
"sass": "^1.39.0",
"ts-node": "^10.3.0",
"typedoc": "~0.22.0",
"typescript": "~5.0.2"
},
"overrides": {
"eslint-plugin-jsdoc": {
"eslint": "^8.36.0"
},
"typedoc": {
"typescript": "~5.0.2"
}
},
"relativeDependencies": {
"@itwin/mobile-sdk-core": "../mobile-sdk-core"
}
}