-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "podverse-workers",
"version": "1.0.0",
"description": "Worker scripts that are invoked on-demand and in cron jobs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev:watch": "nodemon --watch 'src' --watch $(realpath node_modules/podverse-orm) --watch $(realpath node_modules/podverse-parser) --watch $(realpath node_modules/podverse-shared) -x \"npm run build\"",
"build": "tsc",
"lint": "eslint ./src --ext .ts",
"lint-fix": "eslint --fix",
"prepare": "npm run build"
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/podverse/podverse-workers.git"
},
"license": "AGPLv3",
"bugs": {
"url": "https://github.com/podverse/podverse-workers/issues"
},
"homepage": "https://github.com/podverse/podverse-workers#readme",
"devDependencies": {
"@types/crypto-js": "^4.2.1",
"@types/node": "^20.10.4",
"@types/shortid": "^0.0.32",
"@types/web-push": "^3.3.2",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"nodemon": "^3.0.2",
"typescript": "^5.3.2"
},
"dependencies": {
"@types/aws-sdk": "^2.7.0",
"aws-sdk": "2.814.0",
"axios": "^1.6.2",
"crypto-js": "^4.2.0",
"csvtojson": "^2.0.10",
"docker-cli-js": "2.9.0",
"podcast-partytime": "^4.8.0",
"podverse-external-services": "^1.0.0",
"podverse-orm": "^1.0.0",
"podverse-parser": "^1.0.0",
"podverse-shared": "^4.15.3",
"shortid": "^2.2.16",
"web-push": "^3.6.3",
"ws": "^8.5.0"
}
}