forked from RyanHirsch/partytime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.42 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
70
71
72
73
74
75
76
77
78
79
{
"name": "@podverse/podcast-partytime",
"version": "4.3.2-pv.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"url": "https://github.com/RyanHirsch/partytime"
},
"keywords": [
"podcasting20",
"podcast",
"rss"
],
"scripts": {
"prettier:base": "prettier --parser typescript",
"prettier:check": "npm run prettier:base -- --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\"",
"start": "node dist/index.js",
"clean": "rimraf dist",
"prebuild": "rimraf dist",
"prepublishOnly": "yarn lint && yarn test && yarn build",
"postpublish": "git push --tags",
"build": "tsc",
"test": "LOG=silent jest",
"test:debug": "LOG=trace jest",
"lint": "npm-run-all -p lint:*",
"lint:lint": "eslint --ext .js,.ts src/",
"lint:typecheck": "tsc --noEmit",
"test:watch": "jest --watch",
"start:dev": "esr src/dev.ts",
"dev": "esr src/dev.ts",
"dev:watch": "ts-node-dev --respawn --no-notify src/dev.ts",
"deps": "npm-run-all -p deps:*",
"deps:person": "./scripts/update-person-enum.sh",
"deps:licenses": "./scripts/update-licenses.sh"
},
"devDependencies": {
"@types/bytebuffer": "^5.0.42",
"@types/he": "^1.1.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.34",
"@types/node-fetch": "^2.5.8",
"@types/ramda": "^0.27.39",
"@types/sqlite3": "^3.1.7",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"esbuild": "^0.12.24",
"esbuild-runner": "^2.2.1",
"eslint": "^7.21.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-sonarjs": "^0.6.0",
"fast-json-stable-stringify": "^2.1.0",
"handlebars": "^4.7.7",
"husky": "^5.1.3",
"jest": "^27.1.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"podping-client": "^3.2.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sqlite3": "^5.0.2",
"ts-node-dev": "^1.1.6",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3"
},
"dependencies": {
"dotenv": "^10.0.0",
"fast-xml-parser": "^3.18.0",
"he": "^1.2.0",
"node-fetch": "^2.6.1",
"pino": "^7.0.5",
"ramda": "^0.27.1"
}
}