This repository has been archived by the owner on May 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 2.11 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": "vt-api",
"version": "1.6.6",
"description": "Simple GraphQL API for getting VTuber livefeeds, channels, and videos.",
"scripts": {
"postinstall": "npm run build",
"build": "tsc",
"watch": "tsc -w",
"dev": "concurrently -r npm:watch npm:dev-*",
"dev-server": "NODE_ENV=development nodemon dist/src/server",
"dev-graphql": "NODE_ENV=development nodemon dist/src/graphql",
"start": "concurrently -r npm:start-*",
"start-server": "NODE_ENV=production node dist/src/server",
"start-graphql": "NODE_ENV=production node dist/src/graphql",
"copy-default": "cp -rT channels/default/ channels/organizations/",
"channel-manager": "node -e \"require('./dist/channels').channelManager();\"",
"init": "node -e \"require('./dist/channels').init();\""
},
"keywords": [],
"author": "",
"license": "WTFPL",
"dependencies": {
"apollo-server": "^2.21.0",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql-iso-date": "^3.6.1",
"graphql-rate-limit": "^2.0.1",
"graphql-type-json": "^0.3.2",
"memcached": "^2.2.2",
"mongoose": "^5.12.4",
"node-fetch": "^2.6.1",
"node-schedule": "^1.3.3",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/graphql-iso-date": "^3.4.0",
"@types/memcached": "^2.2.6",
"@types/node": "^14.14.28",
"@types/node-fetch": "^2.5.8",
"@types/node-schedule": "^1.3.1",
"@types/xml2js": "^0.4.8",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"concurrently": "^5.3.0",
"eslint": "^7.20.0",
"nodemon": "^2.0.7",
"typescript": "^4.1.5"
},
"nodemonConfig": {
"ignore": [
"channels/default",
"channels/organizations"
],
"events": {
"start": "clear",
"restart": "clear"
}
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Choooks22/vt-api.git"
},
"bugs": {
"url": "https://github.com/Choooks22/vt-api/issues"
},
"homepage": "https://github.com/Choooks22/vt-api#readme"
}