-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "restful-booker",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cross-env SEED=true node ./bin/www",
"test": "mocha -R spec tests/spec.js",
"contract-test": "cross-env SPECMATIC_LOG_LEVEL=debug NODE_OPTIONS=--experimental-vm-modules node ./node_modules/jest/bin/jest.js contract.test.mjs --ci --runInBand --forceExit"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.3",
"dateformat": "^3.0.3",
"debug": "^4.3.1",
"express": "^4.18.2",
"express-openapi-validator": "^5.1.2",
"express-xml-bodyparser": "^0.3.0",
"form-urlencoded": "^4.2.1",
"honeycomb-beeline": "^2.7.1",
"js2xmlparser": "^4.0.1",
"mongodb": "^4.10.0",
"morgan": "^1.10.0",
"pug": "^3.0.1",
"specmatic": "^1.2.18",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0",
"universal-analytics": "^0.4.23",
"uuid": "^8.3.1",
"validate.js": "^0.13.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"chai": "^4.2.0",
"jest": "^29.7.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.20",
"supertest": "^4.0.2",
"testcontainers": "^10.7.1"
}
}