-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.07 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.07 KB
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
{
"name": "@codeday/discord-posts",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Tyler Menezes <tylermenezes@srnd.org>",
"license": "Artistic-2.0",
"scripts": {
"start": "node dist",
"clean": "rm -rf dist",
"build": "yarn run clean && yarn run gql && npx prisma generate && npx tsc",
"gql": "graphql-codegen --config codegen.yml -r dotenv/config",
"dev": "concurrently \"yarn run devserver\" \"graphql-codegen --config codegen.yml -r dotenv/config --watch\"",
"devserver": "DEBUG=showcase* ts-node-dev --no-notify --respawn --transpile-only src",
"debug": "ts-node-dev --no-notify --respawn src"
},
"dependencies": {
"@apollo/client": "^3.4.17",
"@discordjs/builders": "^0.8.2",
"@discordjs/rest": "^0.1.0-canary.0",
"@graphql-typed-document-node/core": "^3.1.0",
"@prisma/client": "3.4.2",
"apollo-client": "^2.6.10",
"class-validator": "^0.12.2",
"debug": "^4.3.2",
"discord-api-types": "^0.24.0",
"discord.js": "^13.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"graphql-tag": "^2.12.4",
"graphql-ws": "^5.1.2",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.0",
"prisma": "3.4.2",
"reflect-metadata": "^0.1.13",
"subscriptions-transport-ws": "^0.11.0",
"ws": "^7.4.6"
},
"devDependencies": {
"@codeday/eslint-typescript-config": "^2.0.1",
"@graphql-codegen/cli": "^1.21.5",
"@graphql-codegen/import-types-preset": "^1.18.2",
"@graphql-codegen/near-operation-file-preset": "^1.18.1",
"@graphql-codegen/schema-ast": "^1.18.3",
"@graphql-codegen/typed-document-node": "^1.18.6",
"@graphql-codegen/typescript": "^1.22.1",
"@graphql-codegen/typescript-operations": "^1.18.0",
"@types/debug": "^4.1.7",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^16.11.7",
"@types/node-fetch": "^2.5.7",
"@types/ws": "^7.4.4",
"concurrently": "^6.2.0",
"eslint": "^7.6.0",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^4.4.4"
}
}