-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "@frontender-magazine/mailparser",
"version": "1.0.0",
"description": "Mail parser to get article links from the emails",
"main": "server.mjs",
"type": "module",
"scripts": {
"start": "node --experimental-loader ./resolver.mjs --experimental-modules server.mjs",
"build": "docker build ./ -t frontendermagazine/mailparser --label frontendermagazine",
"publish": "docker push frontendermagazine/mailparser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SilentImp/emailParser.git"
},
"keywords": [
"FM Micro Service",
"Frontender Magazine",
"Service"
],
"author": "Anton Nemtsev <[email protected]>",
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/SilentImp/emailParser/issues"
},
"homepage": "https://github.com/SilentImp/emailParser#readme",
"dependencies": {
"amqplib": "^0.6.0",
"dotenv": "^8.2.0",
"fastify": "^3.9.1",
"fastify-graceful-shutdown": "^3.0.0",
"fastify-healthcheck": "^3.0.0",
"fastify-multipart": "^3.3.1",
"fluent-schema": "^1.1.0",
"isomorphic-fetch": "^3.0.0"
}
}