mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-20 06:08:39 +01:00
* chore(ci): Nx for github validations * chore: tune config * chore: eslint scripts faster and unified settings * chore: check formatting using nx * chore: read-only NX token
28 lines
741 B
JSON
28 lines
741 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": "tsc --build",
|
|
"dev": "tsx watch ./src/index.ts",
|
|
"build": "rimraf ./lib && yarn 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",
|
|
"jest": "^26.6.3",
|
|
"rimraf": "^3.0.2",
|
|
"tsx": "^3.8.2",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|