-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.59 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
58
59
60
61
62
63
{
"name": "thumder-server",
"version": "1.0.0",
"description": "",
"keywords": [
"THUMDER",
"Server",
"Typescript",
"websockets",
"DLX",
"Machine"
],
"repository": {
"type": "git",
"url": "https://github.com/nonodev96/THUMDER-server.git"
},
"license": "MIT",
"author": {
"name": "Antonio Mudarra Machuca",
"url": "https://github.com/nonodev96"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"dev": "tsc -w --project tsconfig.json & nodemon -q -w dist dist/main.js --startWebSocketServer",
"start": "node dist/main.js --startWebSocketServer",
"test": "jest",
"testExample": "node dist/Test.js"
},
"dependencies": {
"@types/ws": "^8.2.0",
"console-table-printer": "^2.10.0",
"http": "0.0.1-security",
"mathjs": "^10.0.2",
"socket.io": "^4.4.0",
"socket.io-client": "^4.4.0",
"ws": "^8.3.0"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/mathjs": "^9.4.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.3.1",
"jest-websocket-mock": "^2.2.1",
"mock-socket": "^9.0.8",
"prettier": "^2.5.0",
"socket.io-await-test": "^1.0.3",
"socket.io-mock": "^1.3.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"ts-prune": "^0.10.3",
"typescript": "^4.5.2"
}
}