-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.39 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
{
"name": "mirror-bridge-proxy",
"module": "src/index.ts",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/bun": "latest",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node-fetch": "^2.6.11",
"@types/supertest": "^6.0.2",
"@types/yamljs": "^0.2.34",
"dotenv": "^16.4.5",
"eslint": "^9.6.0",
"express": "^4.19.2",
"jest": "^29.7.0",
"node-fetch": "^3.3.2",
"supertest": "^7.0.0",
"ts-jest": "^29.1.5",
"typescript-eslint": "^7.14.1"
},
"peerDependencies": {
"typescript": "^5.5.2"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/http-proxy": "^9.5.0",
"fastify": "^4.28.1",
"jsonwebtoken": "^9.0.2",
"yamljs": "^0.3.0",
"zod": "^3.23.8"
},
"scripts": {
"dev": "docker compose up --build",
"test": "NODE_OPTIONS=\"--experimental-vm-modules --trace-warnings\" jest",
"lint": "eslint .",
"format": "eslint . --fix",
"build-docker": "docker build -t mirror-bridge-proxy .",
"publish-docker": "docker tag mirror-bridge-proxy $DOCKER_USERNAME/mirror-bridge-proxy:latest && echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin && docker push $DOCKER_USERNAME/mirror-bridge-proxy:latest",
"release": "bun build-docker && bun publish-docker"
}
}