-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.42 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.42 KB
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
{
"name": "specmatic-order-backend-nodejs",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "set DEBUG=specmatic-order-backend-nodejs:* && node ./src/bin/www",
"startWithDeps": "concurrently --kill-others \"npm run start\" \"specmatic mock --port 8090\" \"node start-kafka.js\"",
"startDeps": "concurrently --kill-others \"specmatic mock --port 8090\" \"node start-kafka.js\"",
"test": "cross-env SPECMATIC_GENERATIVE_TESTS=true KAFKAJS_NO_PARTITIONER_WARNING=1 NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 node ./node_modules/jest/bin/jest.js --collectCoverage --detectOpenHandles --verbose=true",
"test-ci": "cross-env SPECMATIC_LOG_LEVEL=debug DEBUG=specmatic-order-backend-nodejs:* npm run test",
"generate-spec": "node ./src/tools/generateSpec.js"
},
"dependencies": {
"axios": "^1.13.2",
"debug": "^4.4.3",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-json-validator-middleware": "^3.0.1",
"kafkajs": "^2.2.4"
},
"specmatic": {
"logLevel": "debug"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/supertest": "^6.0.3",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"jest": "^30.2.0",
"jest-expect-message": "^1.1.3",
"node-fetch": "^3.3.2",
"specmatic": "^2.39.6",
"supertest": "^7.1.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"testcontainers": "^11.8.0"
}
}