-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.82 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
86
{
"name": "@codeday/labs-gql",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Tyler Menezes <[email protected]>",
"license": "Artistic-2.0",
"scripts": {
"start": "node dist",
"clean": "rm -rf dist",
"build": "npm -s run clean && npm -s run swagger && npm -s run prisma && npx tsc --skipLibCheck && cpy '**/*' '!**/*.ts' ../dist/ --cwd=src/ --no-overwrite --parents",
"prisma": "prisma format && prisma generate",
"dev": "ts-node-dev --no-notify --respawn --transpile-only src",
"debug": "ts-node-dev --no-notify --respawn src",
"send-event-recommendations": "ts-node scripts/sendEventRecommendations.ts",
"swagger": "rm src/badgr/Api.ts; swagger-typescript-api -p badgr-api-v2.yaml -n Api2.ts -o ./src/badgr; echo 'type json = JSON;' | cat - src/badgr/Api2.ts > src/badgr/Api.ts; rm src/badgr/Api2.ts"
},
"dependencies": {
"@codeday/uploader-node": "^1.0.1",
"@elastic/elasticsearch": "^7.13.0",
"@prisma/client": "3",
"@slack/web-api": "^6.8.1",
"@ts-stack/markdown": "1.4",
"@types/redis": "^2.8.28",
"ajv": "^8.6.2",
"apollo-server": "^2.24.1",
"apollo-server-express": "^2.24.1",
"axios": "^1.6.8",
"body-parser": "^1.20.2",
"class-validator": "^0.13.1",
"cron": "^3.1.4",
"csv-stringify": "^6.4.6",
"debug": "^4.3.4",
"diacritics": "^1.3.0",
"diff": "^5.1.0",
"dotenv": "^9.0.2",
"elastic-builder": "^2.16.0",
"express": "^4.17.1",
"front-matter": "^4.0.2",
"gpt-tokenizer": "^2.1.1",
"graphql": "^15.5.0",
"graphql-type-json": "^0.3.2",
"graphql-upload": "^12.0.0",
"graphql-ws": "^4.5.1",
"handlebars": "^4.7.7",
"json-schema": "^0.3.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^3.1.0",
"luxon": "^1.27.0",
"node-fetch": "2",
"nodemailer": "^6.6.0",
"openai": "^4.24.2",
"randomstring": "^1.3.0",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"supports-color": "^9.4.0",
"tmp": "^0.2.1",
"type-graphql": "^1.1.1",
"typedi": "^0.10.0",
"url-search-params": "^1.1.0",
"ws": "^7.4.5"
},
"devDependencies": {
"@codeday/eslint-typescript-config": "^2.1.5",
"@types/body-parser": "^1.19.4",
"@types/csv-stringify": "^3.1.0",
"@types/debug": "^4.1.8",
"@types/diacritics": "^1.3.1",
"@types/diff": "^5.0.9",
"@types/graphql-upload": "^8.0.4",
"@types/jsonwebtoken": "^8.5.1",
"@types/luxon": "^1.26.5",
"@types/node": "^15.3.0",
"@types/node-fetch": "2",
"@types/nodemailer": "^6.4.1",
"@types/randomstring": "^1.3.0",
"@types/tmp": "^0.2.3",
"@types/url-search-params": "^1.1.0",
"cpy-cli": "^3.1.1",
"eslint": "^7.26.0",
"prisma": "3",
"swagger-typescript-api": "^13.0.22",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^5.2.2"
}
}