-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
80 lines (80 loc) · 1.83 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
{
"name": "sitregcapm",
"description": "SITreg implemented in the SAP Cloud Application Programming Model",
"repository": "https://github.com/sapmentors/sitregcapm",
"license": "Apache-2.0",
"version": "0.0.1",
"engines": {
"node": "^18"
},
"files": [],
"dependencies": {
"@sap/cds": "^7.5.1",
"@sap/cds-odata-v2-adapter-proxy": "^1.9.21",
"@sap/hana-client": "^2.19.20",
"axios": "^1.6.2",
"compression": "^1.7.4",
"express": "^4.18.2",
"helmet": "^7.1.0",
"passport": "^0.7.0"
},
"scripts": {
"start": "cds run",
"startv2": "node v2server",
"start-local": "node srv/server.js",
"format": "prettier-standard '**/*.js'",
"build": "cds build/all --clean",
"build:cf": "mbt build -p=cf",
"test": "standard && jest",
"jest:unit": "jest",
"test:system": "node spec/jasmine",
"debug": "node --nolazy --inspect-brk=9229 ./node_modules/gulp/bin/gulp test",
"deploy:cf": "cf deploy mta_archives/sitregcapm_0.0.1.mtar",
"deploy": "cds deploy"
},
"devDependencies": {
"jasmine": "^5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier-standard": "^16.4.1",
"sqlite3": "^5.1.6",
"standard": "^17.1.0",
"supertest": "latest"
},
"cds": {
"requires": {
"dbprod": {
"kind": "hana",
"model": [
"db",
"srv"
]
},
"db": {
"kind": "sqlite",
"model": [
"db",
"srv"
],
"credentials": {
"database": "db/sitregcapm.db"
}
},
"odata": {
"version": "v4"
}
}
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm test",
"pre-push": "npm run format && npm test"
}
},
"standard": {
"env": [
"jest"
]
}
}