-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
{
"name": "music-telegram-bot",
"author": "Igor Omelchenko",
"version": "0.0.4",
"license": "MIT",
"scripts": {
"start": "yarn run env:dev && nodemon --config nodemon-debug.json",
"prebuild": "rimraf build",
"build": "tsc",
"lint": "tslint src/*.ts && tslint example/*.ts && tslint test/*.ts",
"commit": "git add --all && git status",
"upd": "ncu -ua && yarn",
"env:dev": "cross-env NODE_ENV=development",
"env:prod": "cross-env NODE_ENV=production",
"test": "mocha -c -S -R spec --require ts-node/register --check-leaks test/**/*.test.ts",
"test:watch": "yarn test -- -w"
},
"dependencies": {
"aws-sdk": "^2.585.0",
"dotenv": "^7.0.0",
"node-fetch": "^2.3.0",
"node-telegram-bot-api": "^0.30.0"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/dotenv": "^6.1.0",
"@types/mocha": "^5.2.6",
"@types/node": "^10.0.3",
"@types/node-fetch": "^2.1.7",
"@types/node-telegram-bot-api": "^0.30.4",
"chai": "^4.0.0",
"cross-env": "^5.0.0",
"mocha": "^6.0.0",
"nodemon": "^1.11.0",
"npm-check-updates": "^3.0.0",
"rimraf": "^2.5.4",
"ts-node": "^8.0.3",
"tsdoc": "^0.0.4",
"tslint": "^5.0.0",
"typescript": "^3.3.4000"
}
}