-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 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
{
"name": "github-value-backend",
"version": "1.0.0",
"type": "module",
"description": "Demonstrate the value of GitHub",
"main": "src/index.ts",
"scripts": {
"start": "node --enable-source-maps dist/index.js | bunyan -o short -l info",
"test": "vitest",
"build": "tsc",
"dev": "tsx watch src/index.ts | bunyan -o short -l info",
"lint": "eslint src/**/*.ts",
"compose:start": "docker-compose -f ../compose.yml up -d",
"db:start": "docker-compose -f ../compose.yml up -d mongo",
"dotenv": "cp -n .env.example .env || true"
},
"dependencies": {
"@octokit/core": "^6.1.4",
"bunyan": "^1.8.15",
"cors": "^2.8.5",
"cron": "^4.1.3",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"eventsource": "^3.0.6",
"express": "^4.21.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.5.0",
"mongoose": "^8.13.2",
"mysql2": "^3.14.0",
"octokit": "^4.1.2",
"smee-client": "^3.1.1",
"update-dotenv": "^1.1.1",
"validator": "^13.15.23",
"why-is-node-running": "^3.2.2"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@octokit/types": "^14.0.0",
"@types/bunyan": "^1.8.11",
"@types/cors": "^2.8.18",
"@types/eventsource": "^3.0.0",
"@types/express": "^4.17.21",
"@types/node": "^22.15.17",
"@types/validator": "^13.15.0",
"eslint": "9.26",
"globals": "^16.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^3.1.3"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT"
}