-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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": "twitch-channel-stats",
"version": "1.0.0",
"description": "Channel/chat stats for (some) Twitch Software & Game Development streamers",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node dist/bot.js",
"start:docker": "docker compose up --build",
"dev": "tsc --watch",
"dev:site": "next dev ./site",
"build": "tsc",
"build:site": "next build ./site",
"deploy": "flyctl deploy",
"deploy:secrets": "cat .env.production | grep '^[^#;]' | sed 's/\"//g' | flyctl secrets import",
"migrate": "prisma migrate dev",
"migrate:prod": "dotenv -e .env.production prisma migrate deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@next/font": "^13.2.3",
"@prisma/client": "^4.11.0",
"@tremor/react": "^1.8.1",
"@twurple/api": "^6.0.5",
"@twurple/auth": "^6.0.5",
"@twurple/chat": "^6.0.5",
"@twurple/eventsub-ws": "^6.0.5",
"boolean": "^3.2.0",
"delay": "^5.0.0",
"dotenv": "^16.0.3",
"lodash": "^4.17.21",
"minimost": "^1.2.0",
"next": "^13.2.3",
"ora": "^6.1.2",
"picocolors": "^1.0.0",
"pluralize": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tmi.js": "^1.8.5",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/json-schema": "^7.0.11",
"@types/lodash": "^4.14.191",
"@types/node": "^18.14.6",
"@types/pluralize": "^0.0.29",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"autoprefixer": "^10.4.13",
"dotenv-cli": "^7.0.0",
"eslint": "^8.35.0",
"eslint-config-next": "^13.2.3",
"postcss": "^8.4.21",
"prisma": "^4.11.0",
"tailwindcss": "^3.2.7"
}
}