This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "snout",
"version": "0.1.0",
"prettier": "@walrusnetwork/prettier-config",
"description": "Private game server manager through Discord",
"main": "index.ts",
"scripts": {
"start": "node --require ts-node/register index.ts",
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec node --require ts-node/register index.ts"
},
"repository": {
"type": "git",
"url": "[email protected]:WalrusNetwork/snout.git"
},
"dependencies": {
"@typeit/discord": "^1.0.12",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link": "^1.2.13",
"apollo-link-context": "^1.0.19",
"apollo-link-http": "^1.5.16",
"apollo-link-ws": "^1.0.19",
"apollo-utilities": "^1.3.3",
"discord.js": "^12.0.2",
"dotenv": "^8.2.0",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"node-emoji": "^1.10.0",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"subscriptions-transport-ws": "^0.9.16",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"ws": "^7.2.3"
},
"devDependencies": {
"@types/node": "^12.12.31",
"@types/node-emoji": "^1.8.1",
"@types/node-fetch": "^2.5.5",
"@types/redis": "^2.8.17",
"@types/ws": "^7.2.3",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"@walrusnetwork/prettier-config": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-tsdoc": "^0.2.3",
"husky": "^4.2.3",
"nodemon": "^2.0.2",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1"
}
}