-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 979 Bytes
/
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
{
"name": "ts_practice",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "pm2 start ./dist/index.js -i -1",
"build": "tsc -p .",
"dev": "nodemon ./src/index.ts",
"stop": "pm2 stop all"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/lodash": "^4.17.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.9.2",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"bull": "^4.12.2",
"cluster": "^0.7.7",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"fs-extra": "^11.1.1",
"ioredis": "^5.3.2",
"joi": "^17.11.0",
"lodash": "^4.17.21",
"mongoose": "^8.0.1",
"nodemon": "^3.0.1",
"redis": "^4.6.13",
"ts-node": "^10.9.2",
"ts-worker": "^1.0.3",
"worker-thread": "^1.1.0"
}
}