-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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": "service-multiplayer-server",
"version": "0.0.1",
"description": "Successor to the existing FFR multiplayer server implementation.",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"scripts": {
"test": "mocha \"**/*.test.ts\"",
"test:watch": "npm run test -- --watch",
"start:server": "ts-node src/server.ts",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flashflashrevolution/service-multiplayer-server.git"
},
"author": "Zageron",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/flashflashrevolution/service-multiplayer-server/issues"
},
"homepage": "https://github.com/flashflashrevolution/service-multiplayer-server#readme",
"files": [
"dist/**"
],
"exclude": [
"*.test.*",
"./node_modules/",
"./dist/"
],
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"chai": "^4.2.0",
"eslint": "^7.13.0",
"mocha": "^8.2.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"dotenv": "^8.2.0",
"mysql2": "^2.2.5",
"object-to-xml": "^2.0.0",
"simdjson": "^0.5.0",
"typeorm": "^0.2.29",
"typescript-string-operations": "^1.4.0"
},
"mocha": {
"require": "ts-node/register",
"watch-files": [
"./src/**/*.ts"
]
}
}