-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.74 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
87
88
89
90
91
92
93
94
{
"name": "@wordigo/api",
"description": "Wordigo Backend",
"version": "0.0.1",
"scripts": {
"start": "dotenv -- node ./dist/index.js",
"dev": "dotenv -- ts-node-dev -r tsconfig-paths/register ./src/index.ts",
"build": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"test": "jest test",
"db:generate": "prisma generate",
"db:push": "prisma db push --skip-generate",
"db:dashboard": "prisma studio --port 1708"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wordigo/api.wordigo.app.git"
},
"keywords": [
"node",
"fastify",
"prisma",
"typescript",
"swagger",
"jest",
"boilerplate",
"recipe",
"javascript"
],
"author": "Sefa Kapısız <m.sefa06@hotmail.com> & Osman Delişmen",
"license": "MIT",
"bugs": {
"url": "https://github.com/wordigo/api.wordigo.app/issues"
},
"homepage": "https://github.com/wordigo/api.wordigo.app",
"dependencies": {
"@aws-sdk/client-s3": "^3.410.0",
"@fastify/compress": "^6.2.1",
"@fastify/cookie": "^8.3.0",
"@fastify/cors": "^8.2.1",
"@fastify/env": "^4.2.0",
"@fastify/helmet": "^10.1.0",
"@fastify/jwt": "^7.2.0",
"@fastify/rate-limit": "^8.0.3",
"@fastify/session": "^10.4.0",
"@fastify/static": "^6.10.2",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.8.0",
"@fastify/type-provider-json-schema-to-ts": "^2.2.2",
"@google-cloud/storage": "^7.0.1",
"@google-cloud/translate": "^7.2.2",
"@prisma/client": "^5.2.0",
"@sinclair/typebox": "^0.29.6",
"@types/axios": "^0.14.0",
"@types/nodemailer": "^6.4.9",
"@types/passport-jwt": "^3.0.9",
"@types/uuid": "^9.0.8",
"aws-sdk": "^2.1454.0",
"axios": "^1.4.0",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.3.0",
"fastify": "^4.21.0",
"fastify-plugin": "^4.5.1",
"fs": "^0.0.1-security",
"googleapis": "^123.0.0",
"i18next": "^23.4.4",
"i18next-fs-backend": "^2.1.5",
"i18next-http-middleware": "^3.3.2",
"json-schema-to-ts": "^2.9.1",
"jsonwebtoken": "^9.0.1",
"nodemailer": "^6.9.4",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"sharp": "^0.33.0",
"slugify": "^1.6.6",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"uuid": "^9.0.1"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^18.15.11",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-local": "^1.0.35",
"fastify-tsconfig": "^1.0.1",
"pino-pretty": "^10.0.0",
"prisma": "^5.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}