-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.81 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
64
65
66
67
68
{
"name": "@trainlink-org/typescript-server",
"version": "0.0.0-alpha.0",
"description": "A TrainLink server implementation written in Typescript",
"main": "dist/src/index.js",
"files": [
"src",
"dist/src/"
],
"scripts": {
"test": "NODE_ENV=development jest",
"docs": "typedoc",
"build": "tsc --module commonjs",
"dev": "NODE_ENV=development nodemon src/server.ts",
"lint": "eslint .",
"format": "prettier --write .",
"format-check": "prettier --check .",
"prepublishOnly": "npm run build",
"start": "node dist/src/server.js"
},
"keywords": [
"trainlink",
"trainlink-api",
"dcc",
"dcc-ex",
"railway"
],
"repository": {
"type": "git",
"url": "git+https://github.com/trainlink-org/typescript-server.git"
},
"author": "TrainLink Organisation",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/trainlink-org/typescript-server/issues"
},
"homepage": "https://github.com/trainlink-org/typescript-server#readme",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^46.4.3",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.4",
"typedoc-plugin-missing-exports": "^2.1.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@trainlink-org/trainlink-types": "^0.0.1-alpha.5",
"dotenv": "^16.3.1",
"nodemon": "^3.0.1",
"semver": "^7.5.2",
"serialport": "^12.0.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.7.1",
"sqlite": "^5.0.1",
"sqlite3": "^5.1.6"
},
"overrides": {
"semver": "^7.5.2"
}
}