-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "medusa-notification-telegram",
"version": "0.0.1",
"description": "Medusa Telegram Bot Integration",
"author": "Sandip Kachhadiya <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sandeepscet/medusa-notification-telegram"
},
"scripts": {
"build": "babel src -d dist --extensions \".ts,.js\"",
"watch": "babel -w src --out-dir . --ignore **/__tests__ --extensions \".ts,.js\"",
"prepare": "cross-env NODE_ENV=production npm run build"
},
"dependencies": {
"@medusajs/medusa": "^1.3.1",
"cross-env": "^7.0.3",
"medusa-interfaces": "^1.3.0",
"node-telegram-bot-api": "^0.59.0",
"typeorm": "^0.2.36"
},
"keywords": [
"medusa",
"telegram",
"medusa-plugin",
"medusa-plugin-notification"
],
"peerDependencies": {
"@medusajs/medusa": "^1.3.1",
"medusa-interfaces": "^1.3.0",
"typeorm": "^0.2.36"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-typescript": "^7.14.5",
"babel-preset-medusa-package": "^1.1.19"
}
}