mirror of
https://github.com/ringtools/ringtools-server-ts.git
synced 2024-05-16 05:44:40 +02:00
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "ringtools-server-ts",
|
|
"version": "1.0.0",
|
|
"main": "src/index.ts",
|
|
"license": "Apache-2.0",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/ajv-compiler": "^3.0.0",
|
|
"@types/tap": "^15.0.5",
|
|
"@types/ws": "^8.2.2",
|
|
"ajv-formats": "^2.1.1",
|
|
"axios": "^0.24.0",
|
|
"dotenv": "^11.0.0",
|
|
"fastify": "^3.25.3",
|
|
"fastify-cli": "^2.14.0",
|
|
"fastify-decorators": "^3.10.0",
|
|
"fastify-env": "^2.1.1",
|
|
"fastify-helmet": "^6.0.0",
|
|
"fastify-plugin": "^3.0.0",
|
|
"fastify-sensible": "^3.1.2",
|
|
"fastify-socket.io": "^3.0.0",
|
|
"pino-pretty": "^7.3.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"rxjs": "^7.5.2",
|
|
"socket.io": "^4.4.1",
|
|
"source-map-support": "^0.5.21",
|
|
"tap": "^15.1.6",
|
|
"typescript": "^4.5.4",
|
|
"ws": "^8.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@shopify/eslint-plugin": "^41.0.1",
|
|
"@types/jest": "^27.4.0",
|
|
"@types/node": "^17.0.8",
|
|
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
|
"@typescript-eslint/parser": "^5.8.1",
|
|
"concurrently": "^7.0.0",
|
|
"eslint": "^8.5.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"fastify-tsconfig": "^1.0.1",
|
|
"jest": "^27.4.7",
|
|
"prettier": "^2.5.1",
|
|
"ts-jest": "^27.1.2",
|
|
"ts-node": "^10.4.0"
|
|
},
|
|
"scripts": {
|
|
"start": "ts-node src/index.ts",
|
|
"build:ts": "tsc",
|
|
"lint": "eslint . --ext .ts",
|
|
"test": "npm run build:ts && tsc -p test/tsconfig.json && tap --no-coverage-map --no-check-coverage --ts test/**/*.test.ts"
|
|
}
|
|
}
|