-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.76 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": "ts-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node src/app.ts",
"prod": "NODE_ENV=production node dist/app.js",
"dev": "NODE_ENV=production nodemon src/app.ts",
"build": "npm run clean && tsc",
"clean": "rimraf dist"
},
"keywords": [
"node",
"typeScript",
"mongodb",
"redis",
"socket.io",
"bull"
],
"author": "Parthav Miyani",
"license": "ISC",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/bull": "^3.15.8",
"@types/config": "0.0.41",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.8",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.21",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@socket.io/redis-adapter": "^7.1.0",
"@types/mongoose-paginate": "^5.0.11",
"@types/mongoose-paginate-v2": "^1.4.3",
"bull": "^4.8.1",
"config": "^3.3.7",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"ioredis": "^4.28.5",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.0.5",
"mongoose": "^6.2.4",
"mongoose-paginate": "^5.0.3",
"mongoose-paginate-v2": "^1.6.3",
"redis": "^4.0.4",
"socket.io": "^4.4.1",
"socket.io-redis": "^6.1.1",
"uuid": "^8.3.2"
}
}