forked from callowcreation/basic-twitch-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "@callowcreation/basic-twitch-oauth",
"version": "1.0.5",
"description": "Intended to reduce the expected prerequisite experience required for implementing Twitch OAuth to use the Twitch API(s)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"devserver": "nodemon --exec ts-node index.ts",
"build" : "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/callowcreation/basic-twitch-oauth.git"
},
"keywords": [
"Twitch",
"API",
"OAuth",
"Node.js"
],
"author": "caLLowCreation",
"license": "MIT",
"bugs": {
"url": "https://github.com/callowcreation/basic-twitch-oauth/issues"
},
"homepage": "https://github.com/callowcreation/basic-twitch-oauth#readme",
"dependencies": {
"@types/node-fetch": "^2.5.7",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"open": "^7.0.0",
"querystring": "^0.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^14.0.13",
"@types/dotenv": "^6.1.0",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}