-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 1.12 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
{
"description": "Telegram Bot",
"scripts": {
"start": "supervisor -w ./dist ./dist/index.js",
"watch": "./node_modules/.bin/babel --watch --source-maps -d ./dist src",
"postinstall": "./node_modules/.bin/babel -d ./dist src",
"eslint": "./node_modules/.bin/eslint ./src"
},
"license": "MIT",
"dependencies": {
"node-telegram-bot-api": "git+https://github.com/w-site/node-telegram-bot-api.git"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-plugin-transform-es2015-parameters": "^6.7.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.5.0",
"babel-plugin-transform-es2015-spread": "^6.6.5",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-plugin-transform-strict-mode": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"supervisor": "^0.10.0"
},
"engines": {
"node": "5.7.0",
"npm": "3.6.0"
}
}