-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.73 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"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.103",
"@lskjs/utils": "^0.35.103",
"babel-polyfill": "^6.26.0",
"@broteeshkies/bluebird": "^3.7.3",
"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": {
"@commitlint/config-conventional": "8.3.4",
"@release-it/conventional-changelog": "1.1.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.3",
"babel-plugin-transform-inline-environment-variables": "0.0.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"commitlint": "8.3.4",
"cz-customizable": "6.2.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "11.1.0",
"eslint-config-prettier": "6.9.0",
"eslint-loader": "1.6.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "6.9.0",
"eslint-plugin-simple-import-sort": "5.0.0",
"husky": "4.0.7",
"lint-staged": "9.5.0",
"nodemon": "2.0.1",
"prettier": "1.19.1",
"prettier-eslint": "9.0.1",
"release-it": "12.4.3"
},
"scripts": {
"start": "node index.js",
"commit": "./node_modules/cz-customizable/standalone.js -S",
"lint": "eslint . --ext .js,.ts",
"lint-fix": "eslint . --ext .js --fix",
"format-check": "prettier --list-different \"./**/*.js\"",
"pre-commit": "npm run lint-staged",
"pre-push": "npm run format-check",
"prettier": "prettier",
"lint-staged": "lint-staged",
"release": "release-it",
"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"
},
"config": {
"cz-customizable": {
"config": ".czrc.js"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}