mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-22 23:27:18 +01:00
Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.19.2. - [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.18.2...4.19.2) --- updated-dependencies: - dependency-name: express dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
722 B
JSON
26 lines
722 B
JSON
{
|
|
"name": "@trezor/auth-server",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"license": "See LICENSE.md in repo root",
|
|
"sideEffects": false,
|
|
"main": "src/index",
|
|
"scripts": {
|
|
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
|
"type-check": "yarn g:tsc --build",
|
|
"dev": "yarn g:tsx watch ./src/index.ts",
|
|
"build": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json && ../../scripts/replace-imports.sh ./lib",
|
|
"start": "node ./lib/index.js"
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"express": "^4.19.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17"
|
|
},
|
|
"peerDependencies": {
|
|
"tslib": "^2.6.2"
|
|
}
|
|
}
|