-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.97 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.97 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": "final-hour-server",
"version": "0.0.0",
"description": "The server for the final hour audiogame",
"main": "server.ts",
"nodemonConfig": {
"verbose": true,
"delay": "15000",
"ignore": [
".git",
"players/",
"maps/",
"database.sqlite3",
"database.sqlite3-journal",
"database.sqlite3-*"
],
"watch": [
"libs/**/*.ts",
"*.ts"
],
"execMap": {
"ts": "node --inspect=0.0.0.0:9229 --nolazy -r ts-node/register"
}
},
"scripts": {
"start": "./bootstrap.sh && NODE_PATH=./dist node --enable-source-maps dist/server.js",
"build": "tsc -p .",
"dev": "./bootstrap.sh && nodemon server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lower-elements/final-hour-server.git"
},
"author": "",
"license": "GPL-3.0-or-later ",
"bugs": {
"url": "https://github.com/lower-elements/final-hour-server/issues"
},
"homepage": "https://github.com/lower-elements/final-hour-server#readme",
"dependencies": {
"@sequelize/core": "^7.0.0-alpha.37",
"@supercharge/strings": "^1.28.0",
"@types/bcrypt": "^5.0.2",
"@types/nunjucks": "^3.2.6",
"@types/xmldoc": "^1.1.9",
"axios": "^1.6.7",
"bcrypt": "^5.0.1",
"chrono-node": "^2.7.5",
"discord.js": "^14.5.0",
"enet": "^0.2.9",
"math-expression-evaluator": "^1.3.14",
"nunjucks": "^3.2.3",
"quadtree-lib": "^1.0.9",
"sequelize": "^6.21.4",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2",
"xmldoc": "^1.3.0"
},
"devDependencies": {
"@types/math-expression-evaluator": "^1.3.3",
"@types/node": "^20.11.16",
"install": "^0.13.0",
"nodemon": "^3.1.10",
"npm": "^10.4.0",
"typescript": "^5.3.3"
}
}