-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.47 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.47 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
{
"name": "Hermes",
"version": "1.0.0",
"description": "HackIllinois Outreach Automation Platform",
"main": "src/index.ts",
"repository": "https://github.com/HackIllinois/Hermes.git",
"author": "akulsharma1 <akulsharma02@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"format:check": "yarn run prettier --check '**/*.{ts,js,cjs,json}'",
"format": "yarn run prettier --write '**/*.{ts,js,cjs,json}'",
"lint:check": "yarn run eslint src --ext .js,.jsx,.ts,.tsx",
"lint": "yarn run eslint src --ext .js,.jsx,.ts,.tsx --fix",
"build": "tsc",
"verify": "yarn build && yarn lint:check && yarn format:check"
},
"dependencies": {
"@google-cloud/local-auth": "2.1.0",
"@supabase/supabase-js": "^2.50.0",
"@types/cookie-parser": "^1.4.9",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"googleapis": "^150.0.1",
"marked": "^16.4.1",
"node-cron": "^4.2.1",
"status-code-enum": "^1.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/marked": "^6.0.0",
"@types/node": "^24.9.2",
"@types/node-cron": "^3.0.11",
"eslint": "^9.29.0",
"prettier": "^3.5.3"
}
}