-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
88 lines (88 loc) · 3.21 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
{
"name": "adonix",
"version": "6.4.1",
"description": "HackIllinois' backend API",
"keywords": [],
"author": "Aydan Pirani <[email protected]>",
"license": "MIT",
"main": "api/index.js",
"type": "commonjs",
"scripts": {
"bump-version": "node scripts/bump-version.mjs",
"format:check": "yarn run prettier --check '**/*.{ts,js,cjs,json}'",
"format": "yarn run prettier --write '**/*.{ts,js,cjs,json}'",
"lint:check": "tsc --noEmit && yarn run eslint src --ext .js,.jsx,.ts,.tsx",
"lint": "tsc --noEmit && yarn run eslint src --ext .js,.jsx,.ts,.tsx --fix",
"test": "jest",
"test:watch": "jest --coverage=off --watch",
"test:watchAll": "jest --coverage=off --watchAll",
"build": "tsc",
"verify": "yarn lint:check && yarn format:check",
"send-notif": "node scripts/send-notif.js",
"start": "node --enable-source-maps out/index.js",
"serve": "tsc-watch --onSuccess \"node --enable-source-maps out/index.js\""
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.1.1",
"@aws-sdk/client-s3": "^3.496.0",
"@aws-sdk/s3-presigned-post": "^3.499.0",
"@aws-sdk/s3-request-presigner": "^3.496.0",
"@typegoose/typegoose": "^11.5.0",
"@types/uuid": "^9.0.4",
"axios": "^1.5.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^5.0.1",
"express-session": "^1.17.3",
"firebase-admin": "^12.0.0",
"googleapis": "^131.0.0",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.1",
"mongodb": "^5.7.0",
"mongoose": "^7.5.3",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"passport": "^0.6.0",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0",
"passport-strategy": "^1.0.0",
"status-code-enum": "^1.0.0",
"swagger-ui-express": "^5.0.1",
"tsc-watch": "^6.2.0",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"repository": "[email protected]:HackIllinois/adonix.git",
"devDependencies": {
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.5",
"@swc/jest": "^0.2.36",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-serve-static-core": "^4.17.35",
"@types/express-session": "^1.17.7",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/ms": "^0.7.31",
"@types/node": "^20.4.8",
"@types/passport": "^1.0.12",
"@types/passport-github": "^1.1.7",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-strategy": "^0.2.35",
"@types/supertest": "^2.0.14",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.46.0",
"inquirer": "^9.2.11",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.0.1",
"open": "^9.1.0",
"prettier": "3.0.3",
"supertest": "^6.3.3",
"swc_mut_cjs_exports": "^0.99.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}