ringtools-server-ts/package.json

58 lines
1.5 KiB
JSON
Raw Normal View History

2022-01-13 01:52:02 +01:00
{
"name": "ringtools-server-ts",
"version": "1.0.0",
"main": "src/index.ts",
"license": "Apache-2.0",
2022-01-14 01:20:19 +01:00
"directories": {
"test": "test"
},
2022-01-13 01:52:02 +01:00
"dependencies": {
2022-05-05 14:20:31 +02:00
"@fastify/cors": "7.0.0",
2022-06-06 22:08:21 +02:00
"@fastify/helmet": "^8.1.0",
"@fastify/rate-limit": "^6.0.1",
2022-05-17 11:06:47 +02:00
"@fastify/sensible": "4.1.0",
2022-05-05 14:20:31 +02:00
"@fastify/static": "^5.0.2",
"@types/ws": "^8.5.3",
2022-05-05 14:20:31 +02:00
"axios": "^0.27.2",
2022-05-05 14:25:12 +02:00
"cross-fetch": "3.1.5",
2022-05-17 11:06:47 +02:00
"dotenv": "16.0.1",
2022-07-03 14:43:40 +02:00
"fastify": "^3.29.1",
"fastify-decorators": "^3.12.0",
"fastify-plugin": "^3.0.1",
2022-01-13 01:52:02 +01:00
"fastify-socket.io": "^3.0.0",
2022-07-03 14:43:40 +02:00
"ioredis": "^5.1.0",
"node-fetch": "3.2.6",
2022-01-14 01:20:19 +01:00
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
2022-06-06 22:08:21 +02:00
"socket.io": "^4.5.1",
2022-06-06 22:09:41 +02:00
"socks-proxy-agent": "^7.0.0",
2022-07-03 14:43:40 +02:00
"typescript": "^4.7.4",
"ws": "^8.8.0"
2022-01-13 01:52:02 +01:00
},
"devDependencies": {
2022-07-03 14:43:40 +02:00
"@shopify/eslint-plugin": "^41.3.1",
"@types/jest": "^28.1.4",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
2022-06-06 22:08:21 +02:00
"axios-mock-adapter": "^1.21.1",
2022-07-03 14:43:40 +02:00
"concurrently": "^7.2.2",
"eslint": "^8.19.0",
2022-06-06 22:08:21 +02:00
"eslint-config-prettier": "^8.5.0",
2022-01-14 01:20:19 +01:00
"fastify-tsconfig": "^1.0.1",
2022-07-03 14:43:40 +02:00
"jest": "^28.1.2",
2022-06-06 22:08:21 +02:00
"jest-websocket-mock": "^2.3.0",
2022-07-03 14:43:40 +02:00
"mock-socket": "^9.1.5",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2"
2022-01-13 01:52:02 +01:00
},
"scripts": {
"start": "ts-node src/server.ts",
2022-01-14 01:20:19 +01:00
"build:ts": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest"
2022-05-17 11:12:42 +02:00
},
"packageManager": "yarn@3.2.1"
2022-01-13 01:52:02 +01:00
}