This repository was archived by the owner on Oct 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.87 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.87 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
{
"name": "expenseman-api",
"version": "0.0.1",
"description": "The api for ExpenseMan",
"homepage": "https://github.com/BlueMoonDevelopment/ExpenseMan-API",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/BlueMoonDevelopment/ExpenseMan-API/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/BlueMoonDevelopment/ExpenseMan-API.git"
},
"author": "BlueMoonDevelopment",
"contributors": [
{
"name": "TheJeterLP",
"url": "https://www.thejeterlp.de"
},
{
"name": "TigerCipher",
"url": "https://github.com/TigerCipher"
}
],
"scripts": {
"start": "ts-node src/main/typescript/server.ts",
"dev": "nodemon src/main/typescript/server.ts"
},
"dependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/morgan": "^1.9.9",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"mongo-sanitize": "^1.1.0",
"mongoose": "^8.5.2",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.15",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/mongo-sanitize": "^1.0.3",
"@types/node": "^22.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}