-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.85 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.85 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
61
62
63
64
65
66
67
68
69
70
{
"name": "ploter-api",
"version": "1.0.0",
"description": "API for React Native app with Google authentication, real-time features, and clean architecture",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit"
},
"keywords": [
"fastify",
"typescript",
"mongodb",
"google-auth",
"react-native",
"api"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@clerk/backend": "^2.9.3",
"@clerk/fastify": "^2.4.23",
"@fastify/autoload": "^6.3.1",
"@fastify/cors": "^11.1.0",
"@fastify/helmet": "^13.0.1",
"@fastify/jwt": "^10.0.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/sensible": "^6.0.3",
"@fastify/swagger": "^9.5.1",
"@fastify/swagger-ui": "^5.2.3",
"@fastify/websocket": "^11.2.0",
"@google-cloud/storage": "^7.7.0",
"@sendgrid/mail": "^8.1.5",
"bcryptjs": "^2.4.3",
"dotenv": "^16.3.1",
"fastify": "^5.5.0",
"fastify-plugin": "^5.0.1",
"google-auth-library": "^9.4.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"pino-pretty": "^10.2.3",
"redis": "^4.6.11",
"twilio": "^4.19.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.8",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"tsx": "^4.6.0",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}