-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.25 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
{
"name": "chattranslatorbot",
"version": "0.1.0",
"description": "Chat message translator on Twitch for OBS and so on.",
"scripts": {
"build-functions": "swc --out-dir=. *.ts && swc --out-dir=common common/*.ts && swc --out-dir=service service/*.ts",
"build": "vite build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"dev": "vite",
"functions-framework": "functions-framework",
"lint": "eslint --ext .ts,.svelte src *.ts",
"prettier": "prettier .",
"preview": "vite preview",
"test": "jest",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umireon/chattranslatorbot.git"
},
"author": "Kaito Udagawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/umireon/chattranslatorbot/issues"
},
"homepage": "https://github.com/umireon/chattranslatorbot#readme",
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.1",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.218",
"@swc/jest": "^0.2.22",
"@testing-library/svelte": "^3.1.3",
"@tsconfig/svelte": "^3.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/node": "^16.11.7",
"@types/tmi.js": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-svelte3": "^4.0.0",
"firebase": "^9.9.0",
"firebaseui": "^6.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"svelte": "^3.49.0",
"svelte-check": "^2.8.0",
"svelte-jester": "^2.3.2",
"svelte-preprocess": "^4.10.7",
"three-dots": "^0.2.3",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vite": "^3.0.2"
},
"dependencies": {
"@google-cloud/functions-framework": "^3.1.2",
"@google-cloud/secret-manager": "^4.0.0",
"@google-cloud/translate": "^7.0.0",
"firebase-admin": "^11.4.1",
"node-fetch": "^3.2.9",
"tmi.js": "^1.8.5"
},
"type": "module"
}