-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 1.97 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
63
64
65
66
67
68
69
{
"name": "hungryhippo",
"version": "1.1.0",
"description": "creates feeds where there were none before",
"license": "EUPL-1.2",
"author": "Huey <hello@huey.xyz>",
"main": "dist/app.js",
"scripts": {
"babel-node": "babel-node --extensions \".ts\" src/app.ts",
"build": "babel src -d dist --extensions \".ts\" --copy-files --source-maps",
"lint:staged": "lint-staged",
"prepare": "husky install",
"start:dev": "nodemon -e ts --exec npm run babel-node",
"start:prod": "node dist/app",
"test": "echo \"No tests\" && exit 0"
},
"lint-staged": {
"*.{ts,d.ts}": [
"tsc-files --noEmit"
],
"*.{ts,js,json}": [
"eslint --fix --ignore-pattern"
]
},
"dependencies": {
"axios": "^1.6.5",
"axios-cache-interceptor": "^1.4.1",
"cheerio": "^1.0.0-rc.12",
"dayjs": "^1.11.10",
"express": "^4.18.2",
"feed": "^4.2.2",
"form-data": "^4.0.0",
"helmet": "^7.1.0",
"html-entities": "^2.4.0",
"morgan": "^1.10.0",
"playwright-chromium": "^1.41.0",
"qs": "^6.11.2"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/eslint-plugin": "^7.23.5",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@types/express": "^4.17.21",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"dotenv": "^16.3.1",
"eslint": "8.56.0",
"eslint-plugin-disable": "^2.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^50.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.3",
"tsc-files": "^1.1.4",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=v16.1.0"
}
}