-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.94 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "ycc-bot",
"description": "Management Assistant Bot for Young Creator's Camp",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "backpack",
"build": "backpack build",
"build-image": "docker build -t gcr.io/ycc2020/ycc-bot:latest .",
"run-image": "docker run -p 8000:8000 --env PORT=8000 gcr.io/ycc2020/ycc-bot:latest .",
"deploy": "gcloud beta run deploy --image gcr.io/ycc2020/ycc-bot:latest --project ycc2020 --region us-central1 --memory 2Gi --timeout 600 --concurrency 1 ycc-bot",
"test": "jest",
"tunnel": "ssh -R ycc.serveo.net:80:localhost:8080 serveo.net"
},
"devDependencies": {
"@slack/types": "^1.0.0",
"@types/airtable": "^0.5.6",
"@types/dotenv": "^6.1.1",
"@types/feathersjs__socketio": "^3.0.6",
"@types/gapi": "^0.0.36",
"@types/gapi.client.customsearch": "^1.0.1",
"@types/jest": "^24.0.13",
"@types/qs": "^6.5.3",
"@types/tsscmp": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"awesome-typescript-loader": "^5.2.1",
"cache-loader": "^3.0.1",
"dotenv": "^8.0.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-standard": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^1.3.4",
"jest": "^24.8.0",
"thread-loader": "^2.1.2",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.2",
"ts-node": "^8.2.0",
"typescript": "^3.5.1"
},
"dependencies": {
"@feathersjs/errors": "^3.3.6",
"@feathersjs/express": "^1.3.1",
"@feathersjs/feathers": "^3.3.1",
"@line/bot-sdk": "^6.8.0",
"@slack/bolt": "^1.2.0",
"@slack/events-api": "^2.2.0",
"@slack/interactive-messages": "^1.1.1",
"@slack/rtm-api": "^5.0.1",
"@slack/web-api": "^5.0.1",
"@slack/webhook": "^5.0.0",
"@types/dialogflow": "^0.9.4",
"@types/feathersjs__errors": "^3.3.1",
"@types/feathersjs__express": "^1.1.6",
"@types/feathersjs__feathers": "^3.1.5",
"@types/lowdb": "^1.0.9",
"@types/ramda": "^0.26.9",
"@types/uuid": "^3.4.4",
"airtable": "^0.6.0",
"axios": "^0.19.0",
"backpack-core": "^0.8.3",
"chalk": "^2.4.2",
"dialogflow": "^0.10.1",
"express": "^4.17.1",
"firebase-admin": "^8.2.0",
"googleapis": "^40.0.0",
"lowdb": "^1.0.0",
"qrcode": "^1.3.3",
"qs": "^6.7.0",
"ramda": "^0.26.1",
"raw-body": "^2.4.1",
"tslib": "^1.10.0",
"tsscmp": "^1.0.6",
"uuid": "^3.3.2",
"xstate": "^4.6.4"
},
"jest": {
"roots": [
"<rootDir>"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/test/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/test/utils/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}