forked from alecsg77/raiplaysoundrss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "raiplaysoundrss",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"build-ts": "esbuild --bundle src/server.ts --outdir=dist --minify --sourcemap --platform=node",
"build": "npm run lint && npm run build-ts",
"lint": "eslint ./src/ --ext .ts",
"start": "npm run build && node dist/server.js",
"watch": "nodemon -L"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"apicache": "^1.6.3",
"compression": "^1.7.4",
"express": "^4.17.3",
"moment": "^2.29.1",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.7",
"pino-http": "^6.6.0",
"pino-pretty": "^7.5.4",
"podcast": "^2.0.0"
},
"devDependencies": {
"@types/apicache": "^1.6.1",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.6.1",
"@types/xml-escape": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"esbuild": "^0.17.18",
"eslint": "^8.11.0",
"nodemon": "^2.0.15",
"typescript": "^4.6.2"
}
}