-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.46 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
{
"name": "twitch-channel-redemptions",
"version": "0.4.0",
"main": "dist/index.js",
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "cross-env NODE_ENV=production node -r dotenv/config dist",
"start:dev": "concurrently -r true \"cross-env NODE_ENV=development DEBUG=twitch-channel-redemptions* nodemon -r dotenv/config -r source-map-support/register dist\" \"yarn build:dev\" \"yarn webpack:dev\"",
"build": "rimraf dist && tsc && yarn webpack",
"build:dev": "cross-env NODE_ENV=development tsc -w",
"webpack": "cross-env NODE_ENV=production webpack",
"webpack:dev": "cross-env NODE_ENV=development webpack",
"lint": "cross-env TWITCH_CHANNEL_NAME=alexbcberio eslint src/**/*",
"lint-fix": "yarn lint --fix"
},
"dependencies": {
"@fastify/autoload": "^5.7.1",
"@fastify/static": "^6.10.1",
"@fastify/websocket": "^8.0.0",
"@sinclair/typebox": "^0.28.9",
"@twurple/api": "^5.0.13",
"@twurple/auth": "^5.0.13",
"@twurple/chat": "^5.0.13",
"@types/tinycolor2": "^1.4.3",
"axios": "^1.7.4",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"fastify": "^4.17.0",
"regedit": "^5.1.2",
"tinycolor2": "^1.4.2",
"ws": "^8.17.1",
"wsnow": "^1.0.6"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"supports-color": "^9.2.2",
"utf-8-validate": "^6.0.3"
},
"devDependencies": {
"@fontsource/noto-sans-mono": "^4.5.11",
"@fontsource/open-sans": "^4.5.14",
"@types/debug": "^4.1.7",
"@types/html-webpack-plugin": "^3.2.6",
"@types/node": "^16.18.25",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"animate.css": "^4.1.1",
"autoprefixer": "^10.4.14",
"concurrently": "^8.0.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"html-loader": "^4.2.0",
"mini-css-extract-plugin": "^2.4.6",
"name2mime": "^1.0.1",
"nodemon": "^2.0.5",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.0",
"prettier": "^2.5.1",
"rimraf": "^5.0.0",
"source-map-support": "^0.5.21",
"tailwindcss": "^3.3.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.0.0",
"typescript": "^5.0.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.2"
}
}