This repository was archived by the owner on Mar 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.52 KB
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
64
65
66
67
{
"name": "@gametactic/socket",
"version": "0.1.0",
"description": "Echo backend for GameTactic",
"repository": {
"type": "git",
"url": "https://github.com/GameTactic/Socket"
},
"author": "Niko Granö",
"license": "GPL-3.0-only",
"scripts": {
"start": "yarn run serve",
"build": "yarn run build-ts && yarn run lint",
"serve": "node dist/app.js",
"watch-node": "nodemon --watch views dist/app.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"yarn run watch-ts\" \"yarn run watch-node\"",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "yarn run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"debug": "echo > debug.log && yarn run build && yarn run watch-debug",
"serve-debug": "nodemon --inspect dist/app.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node,Debug\" -c \"yellow.bold,cyan.bold,green.bold\" \"yarn run watch-ts\" \"yarn run serve-debug\" \"tail -f debug.log\""
},
"dependencies": {
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"compression": "^1.7.4",
"dotenv": "^8.2",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.8.1-alpha.2",
"socket.io": "^2.3.0",
"socket.io-json-parser": "^2.1.0",
"sync-request": "^6.1.0",
"tsyringe": "^4.1.0",
"twig": "^1.15.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/dotenv": "^8.2",
"@types/engine.io": "^3.1.2",
"@types/errorhandler": "^1.5.0",
"@types/eslint": "^6.1.1",
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.7",
"@types/multer": "^1.4.2",
"@types/node": "12.7.8",
"@types/socket.io": "^2.1.4",
"@types/twig": "^1.12.2",
"@types/winston": "^2.4.4",
"@types/ws": "^7.2.1",
"@types/yeast": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"concurrently": "^5.0.0",
"eslint": "^6.4.0",
"nodemon": "2.0.2",
"ts-node": "^8.4.1",
"typescript": "^3.8.2"
}
}