-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "express-aem",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest test/unit/",
"test:integration": "jest test/integration/AEMValidation.test.js",
"start": "node srv/server.js",
"watch": "nodemon srv/server.js",
"clean": "rimraf gen && mkdir gen",
"copy": "cpy srv gen && cpy package*.json gen",
"clean-copy": "npm run clean && npm run copy"
},
"type": "module",
"author": "",
"license": "ISC",
"dependencies": {
"@sap/hdbext": "^7.7.2",
"@sap/xb-msg-amqp-v100": "^0.9.58",
"@sap/xsenv": "^3.4.0",
"@sap/xssec": "^3.6.0",
"axios": "^1.3.2",
"cf-nodejs-logging-support": "^6.14.1",
"express": "^4.18.2",
"passport": "^0.6.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"jest": "^29.4.2",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"rimraf": "4.1.2",
"cpy-cli": "4.2.0",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"sqlite3": "^5.1.6",
"supertest": "^6.3.3"
}
}