-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.63 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.63 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
{
"name": "ClocktowerAPI",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/davotronic5000/ClocktowerAPI.git",
"author": "Dave <d.garnar@uk.cdw.com>",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc && cp -r src/assets dist/src/ && cp -r src/template dist/src",
"watch": "tsc -w",
"typecheck": "tsc --noEmit --watch",
"start": "node dist/src/index.js",
"dev": "nodemon",
"predev": "yarn swagger",
"prebuild": "yarn swagger",
"swagger": "tsoa spec",
"preGenImages": "node dist/src/preGenerateImages && cp -r dist/src/assets/roles/colorised src/assets/roles"
},
"dependencies": {
"color": "^4.2.3",
"cors": "^2.8.5",
"express": "^4.18.2",
"handlebars": "^4.7.7",
"image-downloader": "^4.3.0",
"morgan": "^1.10.0",
"prettier": "^2.8.6",
"puppeteer": "^19.7.5",
"sharp": "^0.32.4",
"swagger-ui-express": "^4.6.2",
"tsoa": "^5.1.1"
},
"devDependencies": {
"@types/color": "^3.0.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.5",
"@types/puppeteer": "^7.0.4",
"@types/sharp": "^0.31.1",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^7.6.0",
"nodemon": "^2.0.21",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/index.ts"
}
}