mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-20 06:08:39 +01:00
24 lines
634 B
JSON
24 lines
634 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": "eslint '**/*.{ts,tsx,js}'",
|
|
"type-check": "tsc --build",
|
|
"dev": "npx nodemon --exec 'ts-node' ./src/index.ts",
|
|
"build": "rimraf ./lib && tsc --build tsconfig.lib.json",
|
|
"start": "node ./lib/index.js"
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"express": "^4.18.1",
|
|
"node-fetch": "^2.6.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.12"
|
|
}
|
|
}
|