-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.94 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
{
"name": "twitch-graphql",
"version": "0.0.0-development",
"description": "A graphql wrapper for the Twitch API.",
"main": "dist/index.js",
"author": "Cole Walker",
"license": "MIT",
"types": "dist/index.d.ts",
"homepage": "https://github.com/ColeWalker/twitch-graphql-server",
"keywords": [
"twitch",
"graphql",
"grapqhl-modules",
"modules",
"api",
"twitch-api"
],
"scripts": {
"prepare": "tsc",
"build": "tsc",
"start": "node ./dist/server.js",
"dev": "concurrently \"tsc -w\" \"nodemon ./dist/server.js\"",
"dev-g": "concurrently \"tsc -w\" \"nodemon ./dist/server.js -g\"",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ColeWalker/twitch-graphql-server.git"
},
"dependencies": {
"@types/callback-to-async-iterator": "^1.1.2",
"@types/node": "^14.0.27",
"axios": "^0.20.0",
"callback-to-async-iterator": "^1.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"graphql-modules": "^1.0.0-alpha.1",
"graphql-tag": "^2.11.0",
"graphql-tools": "^6.0.18",
"reflect-metadata": "^0.1.13",
"tmi.js": "^1.5.0",
"twitch": "^4.1.3",
"twitch-chat-client": "^4.1.3",
"twitch-pubsub-client": "^4.1.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.10",
"@types/tmi.js": "^1.4.2",
"apollo-server": "^2.18.1",
"apollo-server-testing": "^2.18.2",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"express-graphql": "^0.11.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"nock": "^13.0.4",
"nodemon": "^2.0.4",
"semantic-release": "^17.1.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}