-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 954 Bytes
/
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
{
"name": "tacmaps",
"version": "1.0.0",
"description": "Small express app to dynamically generate HLL tacmaps",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon",
"start": "node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HeLO-System/tacmaps.git"
},
"keywords": [
"Hell Let Loose",
"HLL",
"tacmaps",
"tactical maps"
],
"author": "hoersamu (Samuel Höra)",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/HeLO-System/tacmaps/issues"
},
"homepage": "https://github.com/HeLO-System/tacmaps#readme",
"dependencies": {
"express": "^4.18.1",
"sharp": "^0.30.7",
"zod": "^3.18.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/sharp": "^0.30.5",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/index.ts"
}
}