-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2 KB
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
{
"private": true,
"name": "hyperchat",
"description": "Twitch chat application with additional functionalities",
"version": "0.0.1",
"author": "Rainbow",
"homepage": "https://github.com/c-rainbow/hyperchat",
"repository": "github:c-rainbow/hyperchat",
"main": "app/background.js",
"license": "MIT",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"deploy": "electron-builder build --win --publish always",
"postinstall": "electron-builder install-app-deps",
"format:check": "prettier --check main/**/*.ts renderer/**/*.tsx renderer/**/*.ts",
"format:write": "prettier --write main/**/*.ts renderer/**/*.tsx renderer/**/*.ts",
"lint:check": "eslint main/**/*.ts renderer/**/*.tsx renderer/**/*.ts",
"lint:fix": "eslint --fix main/**/*.ts renderer/**/*.tsx renderer/**/*.ts",
"prepare": "husky install"
},
"dependencies": {
"@prisma/client": "^4.0.0",
"@twurple/api": "^5.1.6",
"@twurple/auth": "^5.1.6",
"@twurple/auth-electron": "^5.1.6",
"@twurple/chat": "^5.1.7",
"axios": "^0.27.2",
"daisyui": "^2.17.0",
"electron-serve": "^1.1.0",
"electron-store": "^8.0.1",
"electron-updater": "^5.0.5",
"franc": "^6.0.0",
"googletrans": "^1.0.4",
"tmi.js": "^1.8.5",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/tmi.js": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"autoprefixer": "^10.4.7",
"electron": "^19.0.4",
"electron-builder": "^23.0.3",
"eslint": ">=5.16.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.2",
"next": "^12.1.6",
"nextron": "^8.1.0",
"postcss": "^8.4.13",
"prettier": "^2.7.1",
"prisma": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.1.3",
"typescript": "^4.7.4"
}
}