This repository has been archived by the owner on May 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.71 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
{
"name": "e-commerce-api",
"version": "1.0.0",
"description": "E-commerce app (Backend)",
"main": "index.js",
"scripts": {
"start-service-mail:dev": "NODE_ENV=development env-cmd -f ./MailService/.env.development nodemon --watch './**/*.ts' --exec npx ts-node ./MailService/src/index.ts",
"start-service-order:dev": "NODE_ENV=development env-cmd -f ./OrderService/.env.development nodemon --watch './**/*.ts' --exec npx ts-node ./OrderService/src/index.ts",
"start-service-product:dev": "NODE_ENV=development env-cmd -f ./ProductService/.env.development nodemon --watch './**/*.ts' --exec npx ts-node ./ProductService/src/index.ts",
"start-service-user:dev": "NODE_ENV=development env-cmd -f ./UserService/.env.development nodemon --watch './**/*.ts' --exec ts-node ./UserService/src/index.ts",
"start-gateway:dev": "NODE_ENV=development env-cmd -f ./Gateway/.env.development nodemon --watch './**/*.ts' --exec ts-node ./Gateway/src/index.ts",
"start-services:dev": "concurrently \"npm:start-service-*:dev\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/capstone-bazaar/e-commerce-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/capstone-bazaar/e-commerce-api/issues"
},
"homepage": "https://github.com/capstone-bazaar/e-commerce-api#readme",
"dependencies": {
"amqplib": "^0.10.3",
"apollo-server-env": "^4.2.1",
"axios": "^1.3.6",
"concurrently": "^7.6.0",
"env-cmd": "^10.1.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"rabbitmq": "^0.0.2"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.12",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}