-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 KB
/
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
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
59
60
61
62
{
"name": "ghog-day",
"description": "groundhog day website: get all groundhogs and their predictions, year by year. it's a real holiday",
"version": "1.17.1",
"license": "MIT",
"homepage": "https://groundhog-day.com",
"keywords": [
"Groundhog Day",
"groundhogs",
"marmots",
"weather",
"prognostications",
"punxsutawney phil",
"wiarton willie",
"groundhog map"
],
"repository": {
"type": "git",
"url": "git://github.com/pcraig3/ghog-day.git"
},
"scripts": {
"dev": "NODE_ENV=dev DEBUG=ghog-day:* nodemon -e js,njk ./bin/www & npm run scss:watch",
"lint": "eslint \"./**/*.js\"",
"scss:watch": "sass --style=compressed --watch src/scss/main.scss public/stylesheets/main.css",
"scss": "sass src/scss/main.scss public/stylesheets/main.css",
"start": "npm run scss & npm run start:prod",
"start:prod": "NODE_ENV=production node ./bin/www",
"test": "jest --testPathIgnorePatterns='skip*' --retryTimes=2"
},
"dependencies": {
"@beenotung/better-sqlite3-helper": "^4.1.7",
"cheerio": "^1.0.0",
"compression": "^1.7.5",
"cookie-parser": "~1.4.7",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"debug": "~4.4.0",
"express": "~4.21.2",
"express-openapi-validator": "^5.4.2",
"express-session": "^1.18.1",
"fast-csv": "^5.0.2",
"helmet": "^8.0.0",
"http-errors": "~2.0.0",
"image-size": "^1.2.0",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"list.js": "github:iamrobert/list.js#patch-1",
"morgan": "~1.10.0",
"nunjucks": "^3.2.4",
"sass": "^1.83.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"eslint": "^9.19.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0"
}
}