-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.07 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.07 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "notification-service",
"version": "1.0.0",
"description": "The market-place application is built with `React`, `Typescript`, `Tailwindcss` for the Frontend and `NodeJS `for the backend ",
"main": "app.js",
"scripts": {
"start": "pm2 start ./build/src/app.js -i 5 attach -watch | pino-pretty -c",
"stop": "pm2 stop all",
"delete": "pm2 delete all",
"dev": "nodemon -r tsconfig-paths/register src/app.ts | pino-pretty -c",
"lint:check": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"prettier:check": "prettier --check 'src/**/*.{ts,js,json}'",
"prettier:fix": "prettier --write 'src/**/*.{ts,js,json}'",
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json && ts-node tools/copyAssets.ts",
"test": "jest --coverage=true -w=1 --forceExit --detectOpenHandles --watchAll=false"
},
"keywords": [],
"author": "Lawrencejews",
"license": "ISC",
"devDependencies": {
"@jest/types": "^30.0.5",
"@types/amqplib": "0.10.6",
"@types/email-templates": "^10.0.4",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/nodemailer": "^6.4.17",
"@types/shelljs": "^0.8.17",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"jest": "^30.1.1",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0"
},
"dependencies": {
"@elastic/elasticsearch": "^9.1.0",
"@lawrencejews/marketplace-shared": "^0.0.3",
"amqplib": "0.10.6",
"dotenv": "^17.2.1",
"ejs": "^3.1.10",
"email-templates": "^12.0.3",
"express": "^4.21.2",
"express-async-errors": "^3.1.1",
"http-status-codes": "^2.3.0",
"nodemailer": "^7.0.5",
"pino-pretty": "^13.0.0",
"shelljs": "^0.10.0",
"typescript": "^5.8.3",
"typescript-transform-paths": "^3.5.5",
"winston": "^3.17.0"
}
}