-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.86 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
{
"name": "discogs-compare-two-collections",
"version": "1.0.0",
"description": "Compare your collection or wantlist against another user on Discogs",
"homepage": "https://github.com/KirianCaumes/Compare-Discogs-Collections#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KirianCaumes/Compare-Discogs-Collections.git"
},
"bugs": {
"url": "https://github.com/KirianCaumes/Compare-Discogs-Collections/issues"
},
"main": "src/index.js",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/KirianCaumes"
}
],
"author": "KirianCaumes",
"engines": {
"node": "20.x.x"
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --import tsx ./src/index.ts",
"start:dev": "node --import tsx --watch ./src/index.ts",
"eslint:fix": "eslint --ext .js src/ --fix",
"eslint": "eslint --ext .js src/",
"prettier": "npx prettier --check . '!./data'",
"prettier:fix": "npx prettier --write . '!./data'",
"cspell": "npx cspell ./ --no-progress --dot --gitignore",
"prepare": "husky"
},
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.17.6",
"@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-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.11.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsx": "^4.19.2"
}
}