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",
2023-03-14 18:35:19 +01:00
"@types/ws": "^8.5.4",
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",
2023-03-14 18:35:19 +01:00
"dotenv": "16.0.3",
"fastify": "^3.29.5",
"fastify-decorators": "^3.15.0",
"fastify-plugin": "^3.0.1",
2022-01-13 01:52:02 +01:00
"fastify-socket.io": "^3.0.0",
2023-03-14 18:35:19 +01:00
"ioredis": "^5.3.1",
"node-fetch": "3.3.1",
2022-01-14 01:20:19 +01:00
"reflect-metadata": "^0.1.13",
2023-03-14 18:35:19 +01:00
"rxjs": "^7.8.0",
"socket.io": "^4.6.1",
2022-06-06 22:09:41 +02:00
"socks-proxy-agent": "^7.0.0",
2023-03-14 18:35:19 +01:00
"typescript": "^4.9.5",
"ws": "8.13.0"
2022-01-13 01:52:02 +01:00
},
"devDependencies": {
2022-07-03 14:43:40 +02:00
"@shopify/eslint-plugin": "^41.3.1",
2023-03-14 18:35:19 +01:00
"@types/jest": "^28.1.8",
2022-07-03 14:43:40 +02:00
"@types/node": "^17.0.45",
2023-03-14 18:35:19 +01:00
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"axios-mock-adapter": "^1.21.2",
"concurrently": "^7.6.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
2022-01-14 01:20:19 +01:00
"fastify-tsconfig": "^1.0.1",
2022-08-05 17:23:49 +02:00
"jest": "^28.1.3",
2023-03-14 18:35:19 +01:00
"jest-websocket-mock": "^2.4.0",
"mock-socket": "^9.2.1",
"prettier": "^2.8.4",
"ts-jest": "^28.0.8",
2022-08-05 17:23:49 +02:00
"ts-node": "^10.9.1"
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
}