-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (90 loc) · 2.88 KB
/
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
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
{
"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",
"gen-client": "yarn gen-client-backoffice && yarn gen-client-client",
"gen-client-backoffice": "openapi-ts -o ../aurora-backoffice/src/api/",
"gen-client-client": "openapi-ts -o ../aurora-client/src/api/",
"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",
"prepare-husky": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fostertheweb/spotify-web-sdk": "^1.3.0",
"@sudosos/sudosos-client": "github:GEWIS/sudosos-client",
"async-lock": "^1.4.1",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"connect-typeorm": "^2.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-session": "^1.18.1",
"global": "^4.4.0",
"globals": "^15.11.0",
"joi": "^17.13.3",
"jwt-decode": "^4.0.0",
"mysql2": "^3.11.3",
"node-cron": "^3.0.3",
"passport": "^0.7.0",
"passport-custom": "^1.1.1",
"pino": "^9.5.0",
"pino-http": "^10.3.0",
"pino-pretty": "^11.3.0",
"qs": "^6.13.0",
"socket.io": "^4.8.1",
"sqlite3": "^5.1.7",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.5.1",
"typeorm": "^0.3.20",
"uuid": "^11.0.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@hey-api/openapi-ts": "^0.54.2",
"@tsoa/cli": "^6.5.1",
"@tsoa/runtime": "^6.5.1",
"@types/node": "^22.8.7",
"@types/async-lock": "^1.4.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/node-cron": "^3.0.11",
"@types/passport": "^1.0.17",
"@types/passport-strategy": "^0.2.38",
"@types/swagger-ui-express": "^4.1.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@eslint/js": "^9.14.0",
"concurrently": "^9.0.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}