-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "websocket-typescript",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"watch": "nodemon src/index.ts",
"start": "NODE_ENV=production node dist/index.js",
"build": "tsc --build",
"clean": "tsc --build --clean"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.14",
"@types/lodash": "^4.14.191",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.9",
"ts-node": "^10.2.1",
"tslint": "^5.12.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"@socket.io/redis-adapter": "^7.2.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"dotenv": "^10.0.0",
"express": "^4.18.2",
"lodash": "^4.17.21",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"redis": "^4.5.1",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"socket.io": "^4.5.4",
"typeorm": "^0.3.10"
}
}