-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 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": "faithful-api",
"version": "2.0.0",
"description": "Public RESTful API for Faithful's texture database, add-on submission, and more.",
"main": "src/index.ts",
"scripts": {
"dev": "pnpm run spec-and-routes && pnpm run nodemon",
"nodemon": "nodemon",
"compile": "tsc",
"spec-and-routes": "tsoa spec-and-routes",
"exec": "ts-node src/index.ts",
"build": "pnpm run spec-and-routes && pnpm run compile && cp -R public dist/",
"start": "node dist/src/index.js",
"swag": "tsoa spec",
"lint": "eslint .",
"prettier": "prettier \"{,!(node_modules)/**/}*.{js,ts}\" --write"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/api-error-handler": "^1.0.37",
"@types/body-parser": "^1.19.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/multer": "^2.1.0",
"@types/node": "^25.6.0",
"@types/response-time": "^2.3.9",
"@types/statuses": "^2.0.6",
"@types/swagger-ui-express": "^4.1.8",
"eslint": "^10.2.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.2",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.58.2"
},
"dependencies": {
"@tsoa/runtime": "^6.6.0",
"api-error-handler": "^1.0.0",
"axios": "^1.15.0",
"body-parser": "^2.2.2",
"cloudflare": "^5.2.0",
"cors": "^2.8.6",
"discord-api-types": "^0.38.46",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"firestorm-db": "^1.13.0",
"form-data": "^4.0.5",
"isomorphic-dompurify": "^3.8.0",
"multer": "^2.1.1",
"response-time": "^2.3.4",
"statuses": "^2.0.2",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.6.0"
}
}