-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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
{
"author": "Evan Tahler <[email protected]>",
"name": "actionhero-socket-server",
"description": "A TCP and JSON server for actionhero",
"version": "3.0.1",
"homepage": "http://www.actionherojs.com",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/actionhero/actionhero-socket-server.git"
},
"main": "index.js",
"keywords": [
"api",
"realtime",
"socket",
"web",
"game",
"cluster",
"soa",
"action",
"service",
"tcp",
"json"
],
"engines": {
"node": ">=12.0.0"
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^20.2.5",
"actionhero": "^29.0.0",
"jest": "^27.1.0",
"prettier": "^3.0.3",
"ts-jest": "^27.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.4.2"
},
"scripts": {
"test": "jest",
"pretest": "npm run lint && npm run build",
"lint": "prettier --check src __tests__",
"dev": "ts-node-dev --no-deps --transpile-only ./src/server.ts",
"build": "./node_modules/.bin/tsc --declaration && rm -rf dist/actions dist/config",
"start": "node ./dist/server.js",
"prepare": "npm run lint && npm run build"
},
"dependencies": {
"uuid": "^10.0.0"
}
}