-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "backend",
"version": "1.0.0",
"private": true,
"description": "While Datenanfragen.de is mostly run as a static site, some functionality does require a server. These endpoints are defined here.",
"author": "The Datenanfragen.de project <dev@datenanfragen.de> (https://www.datenanfragen.de)",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"husky": "4.3.7",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"prettier": "^2.8.8"
},
"dependencies": {
"@hapi/hapi": "^21.3.2",
"@hapi/inert": "^7.1.0",
"@hapi/vision": "^7.0.1",
"@octokit/plugin-retry": "^4.1.3",
"@octokit/plugin-throttling": "^5.2.2",
"@octokit/rest": "^19.0.8",
"axios": "^1.7.4",
"fast-xml-parser": "^4.5.0",
"handlebars": "^4.7.7",
"hapi-cron": "^1.1.0",
"joi": "^17.9.2",
"knex": "^2.4.2",
"nanoid": "3.3.6",
"nodemailer": "^6.9.9",
"octokit-plugin-create-pull-request": "^4.2.2",
"pm2": "^5.3.0",
"sqlite3": "^5.1.6"
},
"scripts": {
"dev": "nodemon -e js,mjs,json,html src/index.js",
"prod": "pm2 startOrRestart ecosystem.config.js --no-daemon"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,scss,json}": [
"prettier --write"
]
}
}