-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 3.18 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "nodecg-twitter-widget",
"version": "0.9.0",
"description": "NodeCG layout bundle for showing tweet.",
"homepage": "https://github.com/cma2819/nodecg-twitter-widget#readme",
"author": "Cma",
"files": [
"dashboard",
"extension.js",
"extension"
],
"keywords": [
"",
"nodecg-bundle"
],
"nodecg": {
"compatibleRange": "^1.1.1",
"dashboardPanels": [
{
"name": "twitter",
"title": "Twitter",
"width": 3,
"file": "index.html",
"headerColor": "#1da1f2",
"workspace": "Social"
}
]
},
"main": "../../index.js",
"scripts": {
"autofix": "run-s autofix:*",
"autofix:browser": "eslint --fix --ext .ts,.tsx src/browser",
"autofix:extension": "eslint --fix --ext .ts src/extension",
"autofix:nodecg": "eslint --fix --ext .ts src/nodecg",
"build": "run-s clean build:*",
"build:dashboard": "parcel build src/browser/dashboard/*.html --out-dir dashboard --public-url ./",
"build:extension": "tsc -b src/extension/",
"clean": "trash .cache dashboard graphics extension",
"lint": "run-s lint:*",
"lint:browser": "eslint --ext .ts,.tsx src/browser",
"lint:extension": "eslint --ext .ts src/extension",
"lint:nodecg": "eslint --ext .ts src/nodecg",
"watch:dashboard": "parcel watch src/browser/dashboard/*.html --out-dir dashboard --public-url ./",
"watch:extension": "tsc -b src/extension/ -w",
"start": "node ../..",
"test": "echo \"Error: no test specified\" && exit 1",
"schema-types": "nodecg schema-types -o src/nodecg/generated schemas",
"schema-lib-types": "nodecg schema-types -o src/nodecg/generated schemas/lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cma2819/nodecg-twitter-widget.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cma2819/nodecg-twitter-widget/issues"
},
"devDependencies": {
"@types/clone": "^0.1.30",
"@types/express": "^4.17.8",
"@types/jest": "^27.4.0",
"@types/needle": "^2.5.3",
"@types/node": "^13.13.25",
"@types/uuid": "^3.4.9",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@vue/component-compiler-utils": "^3.2.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-vue": "^6.2.2",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"stylus": "^0.54.8",
"trash-cli": "^3.1.0",
"ts-nodecg": "^0.3.1",
"typescript": "^3.9.7",
"vue-eslint-parser": "^7.1.1",
"vue-property-decorator": "^8.5.1",
"vue-template-compiler": "^2.6.12",
"vuex-module-decorators": "^0.16.1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"@types/node-fetch": "^2.6.2",
"axios": "^0.27.2",
"axios-auth-refresh": "^3.3.1",
"clone": "^2.1.2",
"express": "^4.17.1",
"font-awesome": "^4.7.0",
"needle": "^3.0.0",
"tslib": "^1.14.1",
"twitter-api-sdk": "^1.0.9",
"twitter-v2": "^1.1.0",
"uuid": "^7.0.3",
"vue": "^2.6.12",
"vue-hot-reload-api": "^2.3.4",
"vuetify": "^2.3.14",
"vuex": "^3.5.1"
}
}