-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1001 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1001 Bytes
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
{
"name": "my-github-profile",
"version": "1.0.0",
"description": "A website which provides a ton of information about your GitHub account.",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "npm run build && node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wdhdev/my-github-profile.git"
},
"author": "William Harrison",
"license": "MIT",
"bugs": {
"url": "https://github.com/wdhdev/my-github-profile/issues"
},
"dependencies": {
"@sentry/node": "10.34.0",
"@sentry/profiling-node": "10.34.0",
"axios": "1.13.2",
"body-parser": "2.2.2",
"cors": "2.8.5",
"dotenv": "17.2.3",
"ejs": "3.1.10",
"express": "5.2.1",
"express-session": "1.18.2"
},
"devDependencies": {
"@types/body-parser": "1.19.6",
"@types/cors": "2.8.19",
"@types/express": "5.0.6",
"@types/express-session": "1.18.2",
"@types/node": "24.10.9",
"typescript": "5.9.3"
}
}