-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.72 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
{
"name": "@frontboi/mondial-relay",
"version": "1.2.19",
"author": "Tom Blanchet <[email protected]> (https://tomblanchet.fr)",
"description": "MondialRelay API web services made simple using NodeJS and Typescript",
"main": "dist/server/index.js",
"module": "dist/client/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/frontBOI/mondial-relay#readme",
"files": [
"dist",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/frontBOI/mondial-relay.git"
},
"scripts": {
"demo:api_v1": "npx ts-node ./examples/api_v1/index.ts",
"demo:create_shipment": "npx ts-node ./examples/createShipment.ts",
"demo:price": "npx ts-node ./examples/getDeliveryPrice.ts",
"prepare": "if [[ $NODE_ENVIRONMENT != \"production\" ]]; then husky install; fi",
"prepublishOnly": "npx tsc && npx copyfiles -f ./src/client/ParcelShopSelector/style.css ./dist/client/ParcelShopSelector"
},
"keywords": [
"mondialrelay",
"mondial-relay"
],
"peerDependencies": {
"react": "^18.3.1",
"soap": "^1.1.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/jquery": "^3.5.30",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"chalk": "^4.1.2",
"eslint": "8.25.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^1.7.3",
"xml2js": "^0.6.2",
"zod": "^3.23.8"
}
}