-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "discogs-notification-on-new-items",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --import tsx ./src/index.ts",
"eslint:fix": "eslint src --fix",
"eslint": "eslint src",
"prettier": "npx prettier --check . '!./data'",
"prettier:fix": "npx prettier --write . '!./data'",
"cspell": "npx cspell ./ --no-progress --dot --gitignore",
"prepare": "husky"
},
"author": "KirianCaumes",
"license": "MIT",
"engines": {
"node": "20.x.x"
},
"type": "module",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/KirianCaumes"
}
],
"dependencies": {
"axios": "^1.7.5",
"dotenv": "^16.4.5",
"handlebars": "^4.7.8",
"mongoose": "^8.5.4",
"nodemailer": "^6.9.14"
},
"devDependencies": {
"@types/node": "^20.16.1",
"@types/nodemailer": "^6.4.15",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cspell": "^8.14.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^50.2.2",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"tsx": "^4.18.0"
}
}