-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.98 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.98 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "podverse-api",
"version": "5.1.28",
"description": "Data API, database migration scripts, and backend services for all Podverse models.",
"private": true,
"main": "./src/index.js",
"repository": "https://github.com/podverse/podverse-api.git",
"homepage": "https://github.com/podverse/podverse-api#readme",
"author": "Mitch Downey <mitch@podverse.fm>",
"contributors": [
"Mitch Downey"
],
"scripts": {
"build:dev": "tsc",
"build:prod": "tsc -p tsconfig.prod.json",
"dev": "tsc && node ./dist/index.js",
"dev:watch": "tsc --watch & nodemon --delay 500ms --watch $(realpath node_modules/podverse-helpers) --watch $(realpath node_modules/podverse-external-services) --watch $(realpath node_modules/podverse-orm) --watch $(realpath node_modules/podverse-mq) --watch dist dist/index.js",
"dev:inspect": "tsc && node --inspect ./dist/index.js",
"dev:inspect:watch": "tsc --watch & nodemon --inspect --delay 500ms --watch $(realpath node_modules/podverse-helpers) --watch $(realpath node_modules/podverse-external-services) --watch $(realpath node_modules/podverse-orm) --watch $(realpath node_modules/podverse-mq) --watch dist dist/index.js",
"lint": "eslint 'src/**/*.{ts,js}'",
"start": "ts-node ./dist/index.js",
"test:e2e": "jest --config jest.e2e.config.js --runInBand"
},
"license": "AGPLv3",
"keywords": [
"podcast",
"episode",
"RSS",
"Atom",
"feed",
"parser",
"feedparser",
"database",
"db",
"podverse"
],
"dependencies": {
"@types/archiver": "^7.0.0",
"archiver": "^7.0.1",
"bcrypt": "^6.0.0",
"body-parser": "^2.2.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"ioredis": "^5.0.4",
"joi": "^18.0.1",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"nodemailer": "^7.0.6",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"podverse-external-services": "^5.1.12",
"podverse-helpers": "^5.1.12",
"podverse-mq": "^5.1.12",
"podverse-notifications": "^1.0.0",
"podverse-orm": "^5.1.12",
"podverse-parser": "^5.1.12",
"reflect-metadata": "^0.2.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.49.0",
"@eslint/config-array": "^0.21.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.5.0",
"@types/nodemailer": "^7.0.1",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/supertest": "^6.0.3",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"jest": "^30.1.3",
"nodemon": "^3.1.10",
"supertest": "^7.1.4",
"ts-jest": "^29.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0"
}
}