-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 961 Bytes
/
package.json
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
{
"author": "Alexander Petros",
"description": "",
"devDependencies": {
"@flydotio/dockerfile": "^0.4.1",
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=20"
},
"main": "src/app.js",
"name": "fyt-bus-packet-generator",
"scripts": {
"deploy": "flyctl deploy --config ./fly/fly.toml --dockerfile ./fly/Dockerfile",
"dev": "NODE_ENV=development nodemon -e js,njk,html src/app.js",
"format": "eslint src --fix",
"lint": "eslint src",
"start": "./db/init-db.sh && NODE_ENV=production node src/app.js",
"test": "node --test",
"update_stops": "sqlite3 \"$DB_FILEPATH\" '.read db/update-stops.sql'",
"validate": "vnu --skip-non-html --also-check-css static"
},
"type": "module",
"version": "1.0.0",
"dependencies": {
"better-sqlite3": "^8.0.0",
"csv-parser": "^3.0.0",
"htmx.org": "^1.9.4",
"nunjucks": "^3.2.4"
}
}