-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.85 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.85 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "aurora-core",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev": "concurrently \"nodemon\" \"nodemon -x npx tsoa spec-and-routes\"",
"build": "tsoa spec-and-routes && tsc",
"start": "node dist/src/index.js",
"tsoa": "tsoa spec-and-routes",
"lint": "eslint ./src --max-warnings=0",
"lint-fix": "eslint ./src --fix",
"format": "prettier --ignore-path .gitignore --check ./src/",
"format-fix": "prettier --ignore-path .gitignore --write ./src",
"seed": "ts-node src/seed/index.ts",
"seed:gewis": "ts-node src/seed/index.ts --gewis",
"seed:hubble": "ts-node src/seed/index.ts --hubble",
"prepare-husky": "husky",
"validate": "ts-node src/validate.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fostertheweb/spotify-web-sdk": "^1.3.0",
"@sudosos/sudosos-client": "https://github.com/GEWIS/sudosos-client.git#commit=b1f2b656e1178626c0ab56b9aa4fc7a87b6fadcd",
"async-lock": "^1.4.1",
"axios": "1.13.3",
"body-parser": "^2.2.2",
"commander": "^14.0.2",
"connect-typeorm": "^2.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-session": "^1.19.0",
"globals": "^17.1.0",
"joi": "^18.0.2",
"jwt-decode": "^4.0.0",
"mime-types": "^3.0.2",
"multer": "^2.0.2",
"mysql2": "^3.16.1",
"node-cron": "^4.2.1",
"passport": "^0.7.0",
"passport-custom": "^1.1.1",
"pino": "^10.3.0",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.3",
"qs": "^6.14.1",
"socket.io": "^4.8.3",
"sqlite3": "^5.1.7",
"swagger-ui-express": "^5.0.1",
"tsoa": "^7.0.0-alpha.0",
"typeorm": "^0.3.28",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/compat": "^2.0.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@tsoa/cli": "^7.0.0-alpha.0",
"@tsoa/runtime": "^7.0.0-alpha.0",
"@types/async-lock": "^1.4.2",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/mime-types": "^3.0.1",
"@types/multer": "^2.0.0",
"@types/node": "^22.19.7",
"@types/node-cron": "^3.0.11",
"@types/passport": "^1.0.17",
"@types/passport-strategy": "^0.2.38",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "5.9.3"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "yarn@4.12.0"
}