-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.08 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
{
"name": "chattalker",
"version": "0.1.0",
"description": "Chat message talker on Twitch and YouTube for OBS and so on.",
"scripts": {
"dev": "vite",
"build": "vite build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"preview": "vite preview",
"gcp-build": "swc --out-dir=. *.ts && swc --out-dir=service service/*.ts && swc --out-dir=handlers handlers/*.ts",
"lint": "prettier --check . && eslint --ext .ts,.svelte src *.ts",
"functions-framework": "functions-framework",
"test": "vitest",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umireon/chattalker.git"
},
"author": "Kaito Udagawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/umireon/chattalker/issues"
},
"homepage": "https://github.com/umireon/chattalker#readme",
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.4.3",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.71",
"@testing-library/svelte": "^4.0.3",
"@tsconfig/svelte": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^0.33.0",
"@vitest/ui": "^0.33.0",
"eslint": "^8.45.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-svelte3": "^4.0.0",
"firebase": "^9.23.0",
"firebaseui": "^6.0.2",
"jsdom": "^22.1.0",
"prettier": "^2.8.1",
"svelte": "^3.59.2",
"svelte-check": "^3.4.6",
"svelte-jester": "^3.0.0",
"svelte-preprocess": "^5.0.4",
"three-dots": "^0.3.2",
"typescript": "^4.9.5",
"vite": "^4.5.3",
"vitest": "^0.33.0"
},
"type": "module",
"dependencies": {
"@google-cloud/functions-framework": "^3.3.0",
"@google-cloud/secret-manager": "^4.2.2",
"@google-cloud/text-to-speech": "^4.2.3",
"@google-cloud/translate": "^7.2.2",
"firebase-admin": "^11.10.1",
"formdata-polyfill": "^4.0.10"
}
}