-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.29 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
84
85
86
87
88
89
90
91
{
"name": "notification-admin",
"version": "1.0.0",
"description": "CAP/Fiori application for managing SAP Launchpad service notification types",
"repository": "http://github.com/stockbal/cf-launchpad-notification-admin",
"license": "MIT",
"private": true,
"dependencies": {
"@sap-cloud-sdk/connectivity": "^2.11.0",
"@sap-cloud-sdk/http-client": "^2.11.0",
"@sap-cloud-sdk/util": "^2.11.0",
"@sap/cds": "^6.3.1",
"@sap/xssec": "^3",
"express": "^4",
"hdb": "^0.19.0",
"passport": "^0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@sap/ux-specification": "^1.102.13",
"@types/axios": "^0.14.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"cds2types": "^3.0.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"sqlite3": "^5.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{css,json,yml}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
},
"prettier": {
"trailingComma": "none",
"printWidth": 100,
"arrowParens": "avoid"
},
"scripts": {
"start": "cds run",
"watch": "cds-ts watch",
"gen:cds-types": "cds2types -c ./srv -o ./srv/types/cds/ -f -s",
"undeploy": "cf undeploy notification-admin --delete-services --delete-service-keys --delete-service-brokers",
"get:env": "cf de notification-admin-srv",
"build": "rimraf resources mta_archives && mbt build --mtar archive",
"deploy": "cf deploy mta_archives/archive.mtar --retries 1"
},
"engines": {
"node": "^16.15"
},
"cds": {
"requires": {
"[production]": {
"auth": {
"kind": "xsuaa"
},
"db": {
"kind": "hana-cloud"
}
},
"[development]": {
"auth": {
"strategy": "dummy"
},
"db": {
"kind": "sqlite"
}
}
}
},
"sapux": [
"app/notification-types-admin"
]
}