Files
trezor-suite/packages/auth-server/package.json
2025-04-28 12:38:53 +02:00

23 lines
640 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": {
"depcheck": "yarn g:depcheck",
"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": "^5.1.0"
},
"peerDependencies": {
"tslib": "^2.6.2"
}
}