Files
trezor-suite/packages/auth-server/package.json
Daniel Suchý a446583d58 chore(ci): Nx for github validations (#6095)
* 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
2022-08-25 18:51:12 +02:00

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"
}
}