-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.28 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
{
"version": "1.0.0",
"name": "microservices",
"description": "",
"scripts": {
"dev": "concurrently \"npm run gateway\" \"npm run customer\" \"npm run product\" \"npm run order\" \"npm run payment\"",
"docker": "docker-compose up",
"docker:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yaml up",
"test": "jest --runInBand --no-cache",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:int": "npm test -- --watch -c jest-integration-config.js",
"test:ci": "npm test -- --silent --coverage",
"gateway": "tsx watch gateway/server.ts",
"customer": "tsx watch customer/server.ts",
"product": "tsx watch product/server.ts",
"order": "tsx watch order/server.ts",
"payment": "tsx watch payment/server.ts"
},
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"kafkajs": "^2.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@swc/core": "^1.2.249",
"@swc/jest": "^0.2.22",
"@types/express": "^4.17.13",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"@types/uuid": "^8.3.4",
"concurrently": "^7.4.0",
"jest": "^29.0.2",
"rimraf": "^3.0.2",
"tsx": "^3.9.0",
"typescript": "^4.8.2"
}
}