-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 3.18 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "sapops",
"version": "0.7.0",
"license": "MIT",
"scripts": {
"cf:login": "cf login --sso -a $(npx cds env requires.db.binding.apiEndpoint --profile hybrid)",
"cf:start": "cf update-service dev -c '{\"data\":{\"serviceStopped\":false}}'",
"build": "nx run-many --target=build,postbuild --exclude sapops",
"deploy": "cds deploy --store-credentials",
"lint": "nx run-many --target=lint --exclude sapops",
"init:data": " CDS_ENV=hybrid npx nx g datagen",
"init:sqlite": "CDS_ENV=mock cds deploy",
"init:types": "npx @cap-js/cds-typer db/model.cds --outputDirectory db/generated/types",
"publish:login": "npm login --registry http://verdaccio:4873",
"publish:local": "NPM_CONFIG_REGISTRY=http://verdaccio:4873 nx release publish",
"preversion": "npx nx release version ${npm_new_version}",
"prepare": "husky",
"build:csn": "cds bind --exec --profile sflight -- npx hana2cds -o ./tmp/sflight/index.csn.json -c snake",
"build:cds": "cds compile sflight/index.csn.json --to cdl -o ./tmp/sflight/index"
},
"private": true,
"dependencies": {
"@cap-js/sqlite": "^1.7.7",
"@commander-js/extra-typings": "^12.1.0",
"@fastify/deepmerge": "^2.0.0",
"@moostjs/event-cli": "^0.4.20",
"@sap/cds": "^8.5.0",
"@sap/hana-client": "^2.22.32",
"case-anything": "^3.1.0",
"commander": "^12.1.0",
"jiti": "^2.4.0",
"moost": "^0.4.20",
"tslib": "^2.8.1"
},
"devDependencies": {
"@cap-js/cds-typer": "^0.29.0",
"@cap-js/cds-types": "^0.8.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "9.15.0",
"@nx/devkit": "20.1.3",
"@nx/eslint": "20.1.3",
"@nx/eslint-plugin": "20.1.3",
"@nx/jest": "20.1.3",
"@nx/js": "20.1.3",
"@nx/plugin": "20.1.3",
"@nx/rollup": "20.1.3",
"@nx/vite": "20.1.3",
"@nx/web": "20.1.3",
"@nx/workspace": "20.1.3",
"@sap/cds-dk": "^8.5.0",
"@sap/eslint-plugin-cds": "^3.1.2",
"@swc-node/register": "~1.10.9",
"@swc/cli": "^0.5.1",
"@swc/core": "~1.9.3",
"@swc/helpers": "^0.5.15",
"@swc/jest": "^0.2.37",
"@tsconfig/recommended": "^1.0.8",
"@types/eslint__js": "^8.42.3",
"@types/jest": "29.5.14",
"@types/node": "22.10.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@vitest/coverage-v8": "^2.1.6",
"@vitest/ui": "^2.1.6",
"eslint": "^9.15.0",
"eslint-formatter-stylish": "^8.40.0",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.7.0",
"json2fs": "^0.1.4",
"nx": "20.1.3",
"prettier": "^3.4.1",
"set-shebang": "^0.1.12",
"sqlite3": "^5.1.7",
"swc-loader": "0.2.6",
"ts-jest": "29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"type-fest": "^4.29.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"verdaccio": "^5.32.2",
"vite": "^5.4.7",
"vitest": "^2.1.6"
},
"workspaces": [
"packages/**"
],
"cds": {
"log": {
"levels": {
"db|pool": "warn"
}
}
},
"imports": {
"#cds-models/*": "./@cds-models/*/index.js"
},
"nx": {
"includedScripts": [
"build",
"lint",
"patch",
"deploy"
]
}
}