-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·63 lines (63 loc) · 1.78 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
{
"name": "rest-shipping",
"version": "1.0.0",
"description": "The goal of this repository is to provide a service to those, who are also impressed by the inability of large shipping services to provide us, developers, with rest-based, well documented, and maintained API endpoints to fetch their service in an automated way.",
"main": "app.mjs",
"scripts": {
"test": "node src/app.mjs",
"start": "nodemon src/app.mjs",
"postinstall": "link-module-alias"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flowluap/rest-shipping.git"
},
"keywords": [
"dpd",
"dhl",
"shipping",
"shipping-provider",
"provider",
"rest"
],
"author": "Paul Wolf - flowluap",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/flowluap/rest-shipping/issues"
},
"homepage": "https://github.com/flowluap/rest-shipping#readme",
"engines": {
"node": ">=14.15.0"
},
"_moduleAliases": {
"~controller": "src/controller",
"~routes": "src/routes",
"~util": "src/util",
"~services": "src/services"
},
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-openapi-validator": "^4.12.5",
"hummus-recipe": "^2.0.1",
"link-module-alias": "1.2.0",
"morgan": "^1.10.0",
"node-pdftk": "^2.1.3",
"pdfjam": "^0.1.0",
"puppeteer": "^10.0.0",
"puppeteer-extra": "^3.1.18",
"puppeteer-extra-plugin-user-data-dir": "^2.2.12",
"puppeteer-extra-plugin-user-preferences": "^2.2.12",
"soap": "^0.40.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
}
}