-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.88 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
{
"name": "@ajayos/cts",
"version": "12.5.3",
"description": "CTS (Cloud Tools Server)",
"scripts": {
"test": "node --inspect -r ts-node/register src/index.ts",
"start": "node --max-old-space-size=4500 lib/index.js",
"start:dev": "npm run tsc && node --max-old-space-size=4500 lib/index.js",
"build": "tsc && prettier --write \"**/**/*.{js,ts,json,css,md}\"",
"tsc": "tsc",
"tsc:watch": "tsc -w -p .",
"lint": "eslint ",
"lint:fix": "eslint . --ext .ts --fix",
"prettier": "prettier --write \"**/**/*.{js,ts,json,css,md}\"",
"prettier:check": "prettier --check \"**/**/*.{js,ts,json,css,md}\""
},
"author": "Ajay o d",
"license": "ISC",
"dependencies": {
"@ajayos/nodelog": "^1.0.2",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"cookie": "^0.7.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"eslint": "^9.7.0",
"express": "^4.21.1",
"express-async-handler": "^1.2.0",
"fs": "^0.0.1-security",
"fs-extra": "^11.2.0",
"helmet": "^7.1.0",
"http": "^0.0.1-security",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.7.1",
"morgan": "^1.10.0",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.15",
"prettier": "^3.3.3",
"socket.io": "^4.8.0",
"unique-names-generator": "^4.7.1",
"uuid": "^10.0.0",
"winston": "^3.13.1",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/crypto-js": "^4.2.2",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.12",
"@types/nodemailer": "^6.4.15",
"@types/uuid": "^10.0.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}