-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "towtruck",
"version": "0.0.1",
"description": "for keeping on top of dxw's repos",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node --env-file=.env index.js",
"start:watch": "node --env-file=.env --watch index.js",
"test": "node --test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"seed": "npm run seed:repos && npm run seed:lifetimes",
"seed:repos": "node --env-file=.env ./seed/repos.js",
"seed:lifetimes": "node --env-file=.env ./seed/lifetimes.js"
},
"author": "dxw",
"license": "MIT",
"dependencies": {
"@octokit/app": "^15.1.0",
"better-sqlite3": "^11.3.0",
"date-fns": "^4.1.0",
"express": "^5.0.0",
"nunjucks": "^3.2.4",
"undici": "^6.19.8"
},
"devDependencies": {
"@eslint/js": "9.23.0",
"@playwright/test": "1.51.1",
"@types/node": "22.13.14",
"chokidar": "3.6.0",
"eslint": "9.23.0",
"eslint-config-prettier": "9.1.0",
"globals": "15.15.0"
}
}