-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.8 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.8 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "socket-chat",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"build": "tsc --build .",
"dev": "cross-env NODE_ENV=development npx nodemon ./src/index.ts",
"lint": "eslint ./src ./test --fix . --ext .ts",
"start": "tsc --build && node ./dist/index.js",
"test": "cross-env NODE_ENV=test jest --silent --runInBand",
"test:cov": "pnpm run test --coverage",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down"
},
"keywords": [],
"author": "Diegoipaez",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.4",
"@types/compression": "^1.7.3",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.19",
"@types/jsonwebtoken": "^9.0.3",
"@types/morgan": "^1.9.6",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^7.5.0",
"express-validator": "^6.15.0",
"helmet": "^8.1.0",
"http-status": "^1.7.4",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.1.0",
"morgan": "^1.10.0",
"pino": "^8.19.0",
"socket.io": "^4.6.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"pino-pretty": "^10.3.1",
"prettier": "^2.8.8",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1"
}
}