-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.66 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.66 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "zuplo-api-gateway",
"version": "1.0.0",
"description": "Zuplo - API management platform that's easy to learn, customize, and deploy",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"dev-mock": "node src/index-dev.js",
"simple": "node src/simple-gateway.js",
"dashboard": "node src/dashboard-simple.js",
"zuplo": "node src/zuplo-gateway.js",
"start-all": "node scripts/start-all.js",
"start-zuplo": "node start-zuplo.js",
"test-api": "node test-api.js",
"test": "jest",
"test:watch": "jest --watch",
"test:unit": "jest tests/unit --coverage --coverageDirectory=coverage/unit",
"test:integration": "jest tests/integration --coverage --coverageDirectory=coverage/integration",
"test:e2e": "jest tests/e2e --coverage --coverageDirectory=coverage/e2e",
"test:performance": "jest tests/performance --verbose",
"test:load": "artillery run tests/load/artillery-config.yml --output load-test-results.json",
"test:load:rate-limiting": "artillery run tests/load/rate-limiting-stress.yml --output rate-limit-test-results.json",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:validate": "node scripts/validate-tests.js",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint src/",
"migrate": "node scripts/migrate.js up",
"migrate:rollback": "node scripts/migrate.js rollback",
"migrate:status": "node scripts/migrate.js status",
"db:seed": "node scripts/seed.js",
"docker:build": "docker build -t api-gateway .",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"admin:dev": "cd admin-dashboard && npm run dev",
"admin:build": "cd admin-dashboard && npm run build",
"admin:install": "cd admin-dashboard && npm install"
},
"dependencies": {
"@apidevtools/swagger-parser": "^12.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fastify/cors": "^8.4.0",
"@fastify/rate-limit": "^8.0.3",
"@fastify/redis": "^6.1.1",
"@fastify/static": "^6.12.0",
"@fastify/swagger": "^8.12.0",
"@fastify/swagger-ui": "^2.1.0",
"@mui/icons-material": "^7.3.1",
"@mui/material": "^7.3.1",
"@mui/x-data-grid": "^8.10.0",
"@tanstack/react-query": "^5.84.2",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.7.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"axios": "^1.11.0",
"bcryptjs": "^2.4.3",
"date-fns": "^4.1.0",
"dotenv": "^16.3.1",
"fastify": "^4.24.3",
"fastify-plugin": "^4.5.1",
"jsonwebtoken": "^9.0.2",
"openapi-types": "^12.1.3",
"pg": "^8.11.3",
"prom-client": "^15.1.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.8.0",
"recharts": "^3.1.2",
"stripe": "^14.12.0",
"swagger-parser": "^10.0.3",
"uuid": "^9.0.1",
"vite": "^6.3.5",
"winston": "^3.11.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@jest/globals": "^30.0.5",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.9",
"@types/pg": "^8.15.5",
"@types/uuid": "^9.0.8",
"artillery": "^2.0.21",
"eslint": "^8.55.0",
"jest": "^30.0.5",
"jest-environment-node": "^30.0.5",
"nodemon": "^3.0.2",
"supertest": "^6.3.3",
"tap": "^18.6.1",
"typescript": "^5.9.2"
},
"keywords": [
"api-gateway",
"microservices",
"authentication",
"rate-limiting",
"observability"
],
"author": "Enterprise Team",
"license": "MIT"
}