-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.09 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
{
"name": "appname",
"version": "1.0.0",
"description": "<APP_DESCRIPTION>",
"author": "<AUTHOR>",
"private": true,
"license": "UNLICENSED",
"engines": {
"node": "18.x"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --project tsconfig.build.json",
"start": "node --expose-gc --optimize-for-size dist/main ",
"start:dev": "ts-node-dev --project tsconfig.build.json ./src/main.ts",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest --config ./test/jest-unit.json",
"test:e2e": "jest --config ./test/jest-e2e.json",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --parser-options \"{tsconfigRootDir: './'}\"",
"ci-build": "npm run cds-build && npm run build && npm run ci-package",
"ci-vendor": "npm install --omit=dev --prefix deployment",
"ci-package": "rimraf deployment && copyfiles -a package.json package-lock.json index.js dist/* dist/vdm/**/* dist/**/* db/* db/**/* srv/* srv/**/* .cdsrc.json deployment && npm run ci-vendor",
"cds-build": "cds build --clean"
},
"dependencies": {
"@nestjs/common": "^10.2.4",
"@nestjs/config": "^3.0.1",
"@nestjs/core": "^10.2.4",
"@nestjs/platform-express": "^10.2.4",
"@sap-cloud-sdk/connectivity": "3.4.0",
"@sap-cloud-sdk/odata-common": "3.4.0",
"@sap-cloud-sdk/odata-v2": "3.4.0",
"@sap-cloud-sdk/odata-v4": "^3.4.0",
"@sap-cloud-sdk/util": "3.4.0",
"@sap/cds": " 8.3.1",
"@sap/xsenv": "^4.0.0",
"@sap/xssec": "^3.3.4",
"axios": "^1.5.0",
"helmet": "^7.0.0",
"moment": "^2.29.4",
"passport": "^0.6.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@cap-js/cds-typer": "^0.27.0",
"@nestjs/schematics": "^10.0.2",
"@nestjs/testing": "^10.2.4",
"@sap/cds-dk": " 8.3.0",
"@types/jest": "^29.5.4",
"@types/node": "^18.0.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"copyfiles": "^2.4.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-security-node": "^1.1.1",
"jest": "^29.6.4",
"jest-junit": "^16.0.0",
"rimraf": "^5.0.1",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5"
},
"cds": {
"log": {
"levels": {
"cds": "error"
}
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testEnvironment": "node"
}
}