-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "ringtools-server-ts",
"version": "1.0.0",
"main": "src/index.ts",
"license": "Apache-2.0",
"directories": {
"test": "test"
},
"dependencies": {
"@fastify/cors": "7.0.0",
"@fastify/helmet": "^8.1.0",
"@fastify/rate-limit": "^6.0.1",
"@fastify/sensible": "4.1.0",
"@fastify/static": "^5.0.2",
"@types/ws": "^8.5.10",
"axios": "^0.27.2",
"cross-fetch": "3.1.8",
"dotenv": "16.4.5",
"fastify": "^3.29.5",
"fastify-decorators": "^3.15.1",
"fastify-plugin": "^3.0.1",
"fastify-socket.io": "^3.0.0",
"ioredis": "^5.3.2",
"node-fetch": "3.3.2",
"reflect-metadata": "^0.1.14",
"rxjs": "^7.8.1",
"socket.io": "^4.7.5",
"socks-proxy-agent": "^7.0.0",
"typescript": "^4.9.5",
"ws": "8.16.0"
},
"devDependencies": {
"@shopify/eslint-plugin": "^41.3.1",
"@types/jest": "^28.1.8",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"axios-mock-adapter": "^1.22.0",
"concurrently": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"fastify-tsconfig": "^1.0.1",
"jest": "^28.1.3",
"jest-websocket-mock": "^2.5.0",
"mock-socket": "^9.3.1",
"prettier": "^2.8.8",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.2"
},
"scripts": {
"start": "ts-node src/server.ts",
"build:ts": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"packageManager": "[email protected]"
}