-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.33 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": "draw-with-us-back-end",
"version": "1.0.0",
"description": "Back end for Draw With Us project",
"main": "index.js",
"author": "trinhdvt",
"license": "MIT",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./target/*",
"build": "yarn clean && tsc",
"start": "yarn build && yarn pm2-dev --node-args --trace-warnings target/server.js",
"format": "prettier --config .prettierrc.json 'src/**/*.ts' --write",
"lint": "eslint --fix --ext .ts ."
},
"dependencies": {
"@socket.io/admin-ui": "^0.3.0",
"@socket.io/redis-adapter": "^7.2.0",
"axios": "latest",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"class-transformer": "^0.3.1",
"class-validator": "latest",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "latest",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"mysql2": "^2.3.3",
"nanoid": "^3.3.4",
"redis": "^4.1.0",
"redis-om": "^0.3.3",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"sequelize": "latest",
"sequelize-typescript": "^2.1.3",
"socket.io": "latest",
"tslib": "^2.4.0",
"typedi": "^0.10.0",
"unique-names-generator": "^4.7.1",
"winston": "^3.7.2"
},
"devDependencies": {
"@faker-js/faker": "^6.3.1",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "latest",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/ms": "^0.7.31",
"@types/node": "^17.0.25",
"@types/sequelize": "^4.28.11",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^8.2.0",
"eslint-plugin-import": "^2.25.2",
"pm2": "^5.2.0",
"prettier": "2.6.2",
"typescript": "latest"
},
"packageManager": "yarn@3.2.1"
}