-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 924 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 924 Bytes
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
{
"name": "telegram-reactjs-bot",
"version": "0.1.0",
"description": "Telegram Bot for React.js Group: https://telegram.me/react_js",
"main": "dist/server.js",
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src",
"build": "./node_modules/.bin/babel -d ./dist src",
"prepublish": "npm run clean && npm run build",
"start": "node ./dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StartupMakers/telegram-reactjs-bot.git"
},
"author": "Denis Izmaylov <izmaylov.dm@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-eslint": "^6.0.4",
"babel-preset-es2015-node6": "^0.1.3",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.1",
"rimraf": "^2.3.4"
},
"dependencies": {
"node-telegram-bot-api": "^0.21.1"
}
}