-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 2.92 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
{
"name": "sapops",
"version": "0.3.1",
"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",
"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",
"patch": "nx release patch --skip-publish -p $(nx show projects --affected -t nx-release-publish --sep=,)"
},
"private": true,
"dependencies": {
"@cap-js/sqlite": "^1.7.3",
"@commander-js/extra-typings": "^12.1.0",
"@fastify/deepmerge": "^2.0.0",
"@moostjs/event-cli": "^0.4.20",
"@sap/cds": "^8.2.3",
"@sap/hana-client": "^2.22.27",
"case-anything": "^3.1.0",
"commander": "^12.1.0",
"jiti": "^1.21.6",
"moost": "^0.4.19",
"tslib": "^2.7.0"
},
"devDependencies": {
"@cap-js/cds-typer": "^0.26.0",
"@cap-js/cds-types": "^0.6.5",
"@eslint/eslintrc": "^2.1.4",
"@eslint/js": "~8.57.0",
"@nx/devkit": "19.8.0",
"@nx/eslint": "19.8.0",
"@nx/eslint-plugin": "19.8.0",
"@nx/jest": "19.8.0",
"@nx/js": "19.8.0",
"@nx/plugin": "19.8.0",
"@nx/rollup": "19.8.0",
"@nx/vite": "19.8.0",
"@nx/web": "19.8.0",
"@nx/workspace": "19.8.0",
"@sap/cds-dk": "^8.2.2",
"@sap/eslint-plugin-cds": "^3.0.5",
"@swc-node/register": "~1.9.1",
"@swc/cli": "^0.3.14",
"@swc/core": "~1.5.7",
"@swc/helpers": "^0.5.13",
"@swc/jest": "^0.2.36",
"@tsconfig/recommended": "^1.0.7",
"@types/eslint__js": "^8.42.3",
"@types/jest": "29.5.12",
"@types/node": "18.19.9",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.3.1",
"eslint": "^8.57.1",
"eslint-formatter-stylish": "^8.40.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.7.0",
"json2fs": "^0.1.4",
"nx": "19.8.0",
"prettier": "^2.8.8",
"set-shebang": "^0.1.12",
"sqlite3": "^5.1.7",
"swc-loader": "0.1.15",
"ts-jest": "29.1.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"type-fest": "^4.26.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"verdaccio": "^5.32.2",
"vite": "^5.4.7",
"vitest": "^1.3.1"
},
"workspaces": [
"packages/**"
],
"cds": {
"log": {
"levels": {
"db|pool": "warn"
}
}
},
"imports": {
"#cds-models/*": "./@cds-models/*/index.js"
},
"nx": {
"includedScripts": [
"build",
"lint",
"patch"
]
}
}