-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.16 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
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
68
69
70
71
{
"name": "@org/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start:all": "concurrently \"node dist/auth/main.js\" \"node dist/customer/main.js\" \"node dist/shopkeeper/main.js\" \"node dist/agent/main.js\" \"node dist/audit-log/main.js\" \"node dist/email-service/main.js \" ",
"build:all": "nx run-many --target=build --projects=auth,customer,shopkeeper,agent,audit-log,email-service"
},
"private": true,
"dependencies": {
"@aws-sdk/client-s3": "^3.679.0",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"bullmq": "^5.21.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.1",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.5.4",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"node-geocoder": "^4.4.0",
"nodemailer": "^6.9.16",
"resend": "^4.0.1-alpha.0",
"sharp": "^0.33.5",
"tslib": "^2.3.0",
"useragent": "^2.3.0"
},
"devDependencies": {
"@nx/eslint": "19.6.2",
"@nx/eslint-plugin": "19.6.2",
"@nx/express": "19.6.2",
"@nx/jest": "19.6.2",
"@nx/js": "19.6.2",
"@nx/node": "19.6.2",
"@nx/web": "19.6.2",
"@nx/webpack": "19.6.2",
"@nx/workspace": "19.6.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@svgr/webpack": "^8.0.1",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.12",
"@types/multer-s3": "^3.0.3",
"@types/node": "~18.16.9",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"concurrently": "^9.1.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"nx": "19.6.2",
"prettier": "^2.6.2",
"react-refresh": "^0.10.0",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.5.2",
"webpack-cli": "^5.1.4"
}
}