mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-02 21:45:14 +01:00
There is no need to have tsconfig.lib if it is not a package that we want to release to npm.
22 lines
518 B
JSON
22 lines
518 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",
|
|
"start": "node ./lib/index.js"
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"express": "^5.2.1"
|
|
},
|
|
"peerDependencies": {
|
|
"tslib": "^2.6.2"
|
|
}
|
|
}
|