-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.15 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.15 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
59
60
61
62
63
64
65
66
67
{
"name": "marketplace-gateway-service",
"version": "1.0.0",
"description": "",
"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",
"dependencies": {
"@elastic/elasticsearch": "^9.1.0",
"@socket.io/redis-adapter": "^8.2.1",
"@lawrencejews/marketplace-shared": "^0.0.3",
"typescript": "^5.8.3",
"typescript-transform-paths": "^3.5.5",
"winston": "^3.17.0",
"express": "^4.21.2",
"http-status-codes": "^2.3.0",
"pino-pretty": "^13.0.0",
"axios": "^1.6.0",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"elastic-apm-node": "^4.1.0",
"express-async-errors": "^3.1.1",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"redis": "^4.6.10",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/compression": "^1.7.4",
"@types/cookie-session": "^2.0.46",
"@types/cors": "^2.8.15",
"@types/express": "^5.0.3",
"@types/hpp": "^0.2.4",
"@types/jest": "^29.5.7",
"@types/jsonwebtoken": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0"
}
}