-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.07 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
{
"name": "jd-extension",
"description": "",
"version": "2.4.0",
"author": {
"name": "Tandashi"
},
"repository": {
"url": "https://github.com/Tandashi/JDR-Twitch"
},
"license": "MIT",
"scripts": {
"build": "rm -rf dist && npm run tslint && tsc && vite build",
"bundle-sources": "zip -r sources.zip src/ sass/ twitch-public/ definitions/ README.md *.js *.ts *.json .yarnrc.yml",
"bundle-extension": "rm -rf dist && npm run build && cd dist && zip extension.zip *",
"watch": "npm run build -- -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"serve-static": "node static-serve.js"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/lodash.debounce": "^4.0.9",
"@types/luxon": "^2.4.0",
"@types/react": "^17.0.70",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^17.0.23",
"@types/react-select": "^4.0.18",
"@types/tailwindcss": "^2.2.4",
"@types/twitch-ext": "^1.24.7",
"@vitejs/plugin-react": "^4.1.1",
"autoprefixer": "^10.4.16",
"express": "^4.18.2",
"postcss": "^8.4.31",
"rollup": "^4.4.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-watch": "^4.3.1",
"sass": "^1.69.5",
"tailwindcss": "^2.2.19",
"tslib": "^2.6.2",
"tslint": "^6.1.3",
"twitchextensioncsp": "^1.3.2",
"typescript": "^4.9.5",
"vite": "^4.5.0",
"vite-tsconfig-paths": "^4.2.1"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"axios": "^0.21.4",
"fuse.js": "^6.6.2",
"lodash.debounce": "^4.0.8",
"luxon": "^2.5.2",
"monaco-editor": "^0.44.0",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^17.0.2",
"react-select": "^4.3.1",
"socket.io-client": "^4.7.2",
"tailwindcss-ripple": "^0.7.1"
}
}