-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.39 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
72
73
74
75
76
77
78
79
80
{
"name": "vtru-studio-worker",
"version": "1.0.101",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles --coverage",
"start": "node index.js",
"dev": "nodemon --exitcrash src/index.ts",
"lint": "eslint --fix src/**/*.ts",
"prepare": "husky install",
"postlint": "tsc --noEmit -p tsconfig.json",
"format": "prettier --write src/**/*.ts package.json",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vitruveo/vtru-studio-worker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vitruveo/vtru-studio-worker/issues"
},
"homepage": "https://github.com/Vitruveo/vtru-studio-worker#readme",
"devDependencies": {
"@types/amqplib": "^0.10.4",
"@types/debug": "^4.1.12",
"@types/draft-js": "^0.11.18",
"@types/draftjs-to-html": "^0.8.4",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@types/nodemailer": "^6.4.14",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.461.0",
"@aws-sdk/client-s3": "^3.472.0",
"@aws-sdk/s3-request-presigner": "^3.472.0",
"@sendgrid/mail": "^8.1.0",
"@sentry/node": "^7.83.0",
"amqplib": "^0.10.3",
"canvas": "^2.11.2",
"dayjs": "^1.11.10",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.9.1",
"fast-xml-parser": "^4.3.6",
"jimp": "^1.6.0",
"nanoid": "^3.3.4",
"nodemailer": "^6.9.7"
},
"nodemonConfig": {
"watch": [
"src/"
],
"ignore": [
".git",
"node_modules"
],
"execMap": {
"ts": "node --require ts-node/register"
},
"env": {}
}
}