mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-01-13 05:23:13 +00:00
Bumps [express](https://github.com/expressjs/express) and [@types/express](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express). These dependencies needed to be updated together. Updates `express` from 4.21.2 to 5.2.1 - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/master/History.md) - [Commits](https://github.com/expressjs/express/compare/4.21.2...v5.2.1) Updates `@types/express` from 4.17.23 to 5.0.6 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/express) --- updated-dependencies: - dependency-name: express dependency-version: 5.2.1 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: "@types/express" dependency-version: 5.0.6 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
1.5 KiB
JSON
43 lines
1.5 KiB
JSON
{
|
|
"name": "@waku/browser-tests",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "npm run start:server",
|
|
"start:server": "PORT=8080 node ./dist/src/server.js",
|
|
"test": "npx playwright test tests/server.spec.ts --reporter=line",
|
|
"test:all": "npx playwright test --reporter=line",
|
|
"test:server": "npx playwright test tests/server.spec.ts --reporter=line",
|
|
"test:integration": "npx playwright test tests/integration.spec.ts --reporter=line",
|
|
"test:e2e": "npx playwright test tests/e2e.spec.ts --reporter=line",
|
|
"build:server": "tsc -p tsconfig.json",
|
|
"build:web": "esbuild web/index.ts --bundle --format=esm --platform=browser --outdir=dist/web && cp web/index.html dist/web/index.html",
|
|
"build": "npm-run-all -s build:server build:web",
|
|
"docker:build": "docker build -t waku-browser-tests:local . && docker tag waku-browser-tests:local waku-browser-tests:latest"
|
|
},
|
|
"dependencies": {
|
|
"@playwright/test": "^1.51.1",
|
|
"@waku/discovery": "^0.0.11",
|
|
"@waku/interfaces": "^0.0.33",
|
|
"@waku/sdk": "^0.0.34",
|
|
"@waku/utils": "0.0.27",
|
|
"cors": "^2.8.5",
|
|
"dotenv-flow": "^0.4.0",
|
|
"express": "^5.2.1",
|
|
"filter-obj": "^2.0.2",
|
|
"it-first": "^3.0.9"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.15",
|
|
"@types/express": "^5.0.6",
|
|
"@types/node": "^20.10.0",
|
|
"@waku/tests": "*",
|
|
"axios": "^1.8.4",
|
|
"esbuild": "^0.21.5",
|
|
"npm-run-all": "^4.1.5",
|
|
"testcontainers": "^10.9.0",
|
|
"typescript": "5.8.3"
|
|
}
|
|
}
|