-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 2.48 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
{
"name": "gowon",
"version": "1.0.1",
"main": "dist/src/index.js",
"author": "John Ivison <[email protected]>",
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "yarn build && node dist/src/index.js",
"build": "tsc --project ./",
"rebuild": "yarn clean && yarn build",
"clean": "rm -rf dist/",
"build:watch": "tsc -w --project ./",
"start:watch": "nodemon dist/src/index.js",
"psql": "psql gowon",
"test": "jest",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migrate": "yarn typeorm migration:run"
},
"dependencies": {
"@absinthe/socket": "^0.2.1",
"@absinthe/socket-apollo-link": "^0.2.1",
"@apollo/client": "3.6.2",
"@discordjs/rest": "^0.3.0",
"@types/absinthe__socket": "^0.2.3",
"@types/absinthe__socket-apollo-link": "^0.2.1",
"@types/morgan": "^1.9.9",
"@types/phoenix": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"apollo-server-express": "^2.17.0",
"axios": "^1.4.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"chance": "^1.1.7",
"cookie-parser": "^1.4.5",
"cross-fetch": "^3.1.4",
"date-fns": "^2.16.1",
"date-fns-tz": "^1.3.7",
"debug": "^4.1.1",
"discord-api-types": "^0.27.3",
"discord.js": "^13.6.0",
"emoji-regex": "^10.2.1",
"escape-string-regexp": "^4.0.0",
"express": "^4.17.1",
"glob": "^7.1.6",
"graphql": "^15.5.0",
"graphql-ws": "^5.8.2",
"hangul-romanization": "^1.0.0",
"js-md5": "^0.7.3",
"mathjs": "^7.1.0",
"morgan": "^1.10.0",
"node-fetch": "^2.6.7",
"pg": "^8.3.2",
"pg-hstore": "^2.3.3",
"phoenix": "^1.7.12",
"prom-client": "^14.0.0",
"querystring": "^0.2.0",
"react": "^18.2.0",
"redis": "^4.0.4",
"reflect-metadata": "^0.1.13",
"stream-to-string": "^1.2.0",
"typeorm": "^0.3.12"
},
"devDependencies": {
"@types/chance": "^1.1.2",
"@types/express": "^4.17.8",
"@types/express-serve-static-core": "^4.17.12",
"@types/glob": "^7.1.2",
"@types/jest": "^27.4.1",
"@types/js-md5": "^0.4.2",
"@types/mathjs": "^6.0.5",
"@types/node": "^14.0.19",
"@types/node-fetch": "^2.5.7",
"@types/redis": "^2.8.25",
"@types/ws": "^7.2.5",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"jest": "^27.5.1",
"nodemon": "^3.1.4",
"prettier": "^2.8.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.6.2"
}
}