forked from austenstone/github-value
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.54 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
{
"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": "^3.2.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"eventsource": "^2.0.2",
"express": "^4.21.2",
"express-rate-limit": "^7.4.1",
"mongoose": "^8.9.5",
"mysql2": "^3.11.4",
"octokit": "4.1",
"smee-client": "^2.0.4",
"update-dotenv": "^1.1.1",
"validator": "^13.15.23",
"why-is-node-running": "^3.2.1"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@octokit/types": "^13.8.0",
"@types/bunyan": "^1.8.11",
"@types/cors": "^2.8.17",
"@types/eventsource": "^1.1.15",
"@types/express": "^4.17.21",
"@types/node": "^22.10.5",
"@types/validator": "^13.12.2",
"eslint": "9.16",
"globals": "^15.13.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.17.0",
"vitest": "^3.0.5"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT"
}