-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.23 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
{
"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 stub --port 8090\" \"specmatic kafka --port 9092\"",
"startDeps": "concurrently --kill-others \"specmatic stub --port 8090\" \"specmatic kafka --port 9092\"",
"test": "cross-env SPECMATIC_GENERATIVE_TESTS=true NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 node ./node_modules/jest/bin/jest.js --collectCoverage --detectOpenHandles",
"test-ci": "cross-env SPECMATIC_LOG_LEVEL=debug DEBUG=specmatic-order-backend-nodejs:* npm run test"
},
"dependencies": {
"axios": "^1.7.7",
"debug": "^4.3.7",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-json-validator-middleware": "^3.0.1",
"kafkajs": "^2.2.4"
},
"specmatic": {
"logLevel": "debug"
},
"devDependencies": {
"@types/supertest": "^6.0.2",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"node-fetch": "^3.3.2",
"specmatic": "^2.0.48",
"specmatic-beta": "github:znsio/specmatic-node-beta#b0b27fd",
"supertest": "^7.0.0"
}
}