-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.65 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
{
"name": "@nmshd/app-web",
"version": "2.6.9",
"description": "The web sources for the enmeshed App",
"repository": "github:nmshd/cns-app-web",
"license": "MIT",
"author": "j&s-soft GmbH",
"scripts": {
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --ext .js ./src",
"lint:prettier": "prettier --check .",
"start": "npx ui5 serve",
"build": "ui5 build preload --exclude-task createDebugFiles generateVersionInfo replaceCopyright -a",
"wdi5": "cd test/e2e && wdio run wdio.conf.ts",
"versionBump": "node ./_tools/versionBump.js && npm i && prettier -w src/manifest.json",
"test": ""
},
"dependencies": {
"@js-soft/native-abstractions": "1.2.2",
"@js-soft/native-cordova": "1.2.8",
"@js-soft/native-electron": "1.2.6",
"@js-soft/native-web": "1.2.6",
"@js-soft/ts-utils": "2.3.3",
"@nmshd/app-runtime": "2.3.11",
"@nmshd/content": "^2.8.0",
"@nmshd/crypto": "^2.0.5",
"@nmshd/runtime": "2.9.1",
"@nmshd/transport": "^2.1.4",
"bson": "^6.2.0",
"lodash": "^4.17.21",
"pako": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@js-soft/license-check": "^1.0.8",
"@prettier/plugin-xml": "^3.2.2",
"@types/lodash": "^4.14.201",
"@types/mocha": "^10.0.4",
"@types/openui5": "1.120.0",
"@ui5/cli": "^3.7.1",
"@wdio/cli": "^8.22.1",
"@wdio/local-runner": "^8.22.1",
"@wdio/mocha-framework": "^8.22.0",
"@wdio/spec-reporter": "^8.21.0",
"babel-preset-transform-ui5": "^7.2.5",
"chromedriver": "^119.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"express-http-proxy": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"prompt": "^1.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"ui5-middleware-livereload": "^3.0.2",
"ui5-tooling-transpile": "^3.2.7",
"wdio-chromedriver-service": "^8.1.1",
"wdio-ui5-service": "^2.0.2",
"webdriverio": "^8.22.1"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"ui5": {
"dependencies": [
"ui5-middleware-livereload",
"ui5-tooling-transpile",
"@js-soft/native-cordova",
"@js-soft/native-web",
"@js-soft/native-electron"
]
}
}