-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.06 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
{
"name": "cybersafely-api",
"version": "1.0.0",
"main": "index.ts",
"repository": "https://github.com/wonderkiln/cybersafely-api",
"author": "Adrian Mateoaea <adrianmteo@gmail.com>",
"private": true,
"scripts": {
"dev": "ts-node-dev --transpile-only --clear --quiet --exit-child index.ts",
"dev:cron": "ts-node scripts/cron.ts",
"dev:seed": "ts-node scripts/seed.ts",
"dev:staff": "ts-node scripts/staff.ts",
"dev:reset": "prisma migrate reset --force",
"dev:migrate": "prisma migrate dev --name",
"typecheck": "tsc --noEmit",
"postinstall": "prisma generate",
"build": "rm -rf dist && tsc && copyfiles templates/*.pug dist",
"prestart": "prisma migrate deploy",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.2.1",
"@types/node-cron": "^3.0.7",
"@types/pug": "^2.0.6",
"copyfiles": "^2.4.1",
"dotenv": "^16.0.3",
"prisma": "^4.14.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@aws-sdk/client-comprehend": "^3.335.0",
"@aws-sdk/client-rekognition": "^3.335.0",
"@aws-sdk/client-s3": "^3.335.0",
"@aws-sdk/s3-request-presigner": "^3.335.0",
"@azure/communication-sms": "^1.0.0",
"@fastify/cors": "^8.2.1",
"@ngneat/falso": "^6.4.0",
"@pothos/core": "^3.30.0",
"@pothos/plugin-dataloader": "^3.17.1",
"@pothos/plugin-with-input": "^3.10.1",
"@prisma/client": "^4.14.1",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"cheerio": "^1.0.0-rc.12",
"colors": "^1.4.0",
"dataloader": "^2.2.2",
"date-fns": "^2.30.0",
"exceljs": "^4.3.0",
"fastify": "^4.17.0",
"file-type": "^18.4.0",
"firebase-admin": "^11.10.1",
"graphql": "^16.6.0",
"graphql-scalars": "^1.22.0",
"graphql-yoga": "^3.9.1",
"jsonwebtoken": "^9.0.0",
"needle": "^3.2.0",
"node-cron": "^3.0.2",
"postmark": "^3.0.18",
"pug": "^3.0.2",
"twitter-api-sdk": "^1.2.1",
"zod": "^3.21.4"
}
}