-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.81 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
{
"name": "bratishka",
"version": "0.1.0",
"description": "Добавляйте меня в телеграм чатики Братаны, искренне ваш @BratishkaBot https://t.me/BratishkaBot",
"repository": "mgbeta/bratishka",
"author": "Nata <[email protected]> && Igor Suvorov <[email protected]>",
"license": "MIT",
"keywords": [
"telegram",
"bot"
],
"main": "index.js",
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@babel/runtime": "^7.7.7",
"@lskjs/config": "^0.35.122",
"@lskjs/utils": "^0.35.103",
"babel-polyfill": "^6.26.0",
"bluebird": "3.5.1",
"dotenv": "2.0.0",
"isomorphic-fetch": "2.2.1",
"lodash": "4.17.11",
"node-telegram-bot-api": "0.30.0",
"phpmorphy": "2.0.13",
"querystring": "0.2.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "7.1.1",
"babel-plugin-transform-inline-environment-variables": "0.0.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"eslint": "3.14.0",
"eslint-config-airbnb": "14.0.0",
"eslint-config-airbnb-base": "11.1.0",
"eslint-loader": "1.6.3",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.9.0",
"nodemon": "2.0.1"
},
"scripts": {
"start": "node index.js",
"build": "rm -rf build && mkdir build && cp package.json build/ && cp yarn.lock build/ && cp README.md build/ && babel src --out-dir build --source-maps inline --copy-files",
"build2": "rm -rf build2 && mkdir build2 && cp package.json build2/ && cp yarn.lock build2/ && cp README.md build2/ && babel src --out-dir build2 --source-maps inline --copy-files",
"dev": "nodemon --watch src --exec babel-node src/index.js",
"dev-build": "DEBUG=1 npm run build -- --watch"
}
}