-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.45 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
{
"name": "telegram",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/main.js",
"build": "backpack build",
"start:dev": "backpack",
"test": "jest",
"lint": "eslint --ext=js,ts .",
"docker:build": "docker build --no-cache -t bot .",
"docker:run": "docker run -it bot"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@pulumi/digitalocean": "^2.6.0",
"@pulumi/docker": "^2.2.3",
"@pulumi/kubernetes": "^2.3.1",
"@pulumi/pulumi": "^2.5.0",
"backpack-core": "^0.4.3",
"common-tags": "^1.5.1",
"eightball": "^1.0.1",
"glob": "^7.0.4",
"google": "^2.0.0",
"helg": "0.0.2",
"humanize-duration": "^3.10.0",
"lodash": "^4.13.1",
"node-fetch": "^1.6.3",
"node-telegram-bot-api": "^0.23.3",
"pirate-speak": "^1.0.0",
"request": "^2.75.0",
"vm2": "^3.4.6",
"winston": "^2.2.0"
},
"devDependencies": {
"@types/node": "^14.0.14",
"babel-eslint": "^6.0.4",
"eslint": "^2.12.0",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.1",
"jest": "^19.0.2",
"jest-cli": "^20.0.4",
"pre-commit": "^1.1.3",
"tap-spec": "^4.1.1"
},
"pre-commit": [
"test",
"lint"
],
"jest": {
"testEnvironment": "node",
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"globals": {
"__DEV__": true
}
}
}