-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "vendasv1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node -r dotenv/config dist/src/main/server.js",
"start:dev": "ts-node-dev -r dotenv/config src/main/server.ts",
"start:docker": "npm run docker:build && npm run docker:compose",
"docker:compose": "docker compose up -d",
"docker:build": "npm run build && docker build -t vendas_img .",
"update-versions": "npm update && npm upgrade && npm install",
"build": "npx tsc",
"style:fix": "prettier --write src/**/*.ts src/**/**/*.ts",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/amqplib": "^0.10.4",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"@types/redis": "^4.0.11",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"jest": "^29.4.3",
"jest-mock-extended": "^3.0.1",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"amqplib": "^0.10.3",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.0.1",
"pino": "^8.16.1",
"pino-pretty": "^10.2.3",
"redis": "^4.6.10"
}
}