-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 920 Bytes
/
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
{
"name": "plex-slack-music-notifications",
"version": "2.0.0",
"private": true,
"engines": {
"node": "20.13.0"
},
"scripts": {
"proxy": "nodemon sslProxy.js",
"server": "PORT=8080 nodemon --inspect dist/server.js",
"build": "esbuild src/server.ts --bundle --platform=node --target=node16.14.2 --outdir=dist",
"start": "node dist/server.js"
},
"dependencies": {
"express": "4.17.3",
"multer": "1.4.4",
"node-fetch": "3.2.3",
"passport": "0.5.2",
"pg": "8.7.3",
"tsscmp": "1.0.6"
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/multer": "1.4.7",
"@types/node": "17.0.23",
"@types/node-fetch": "2.6.1",
"concurrently": "7.0.0",
"esbuild": "0.14.34",
"http-proxy": "1.18.1",
"nodemon": "2.0.15",
"rollup": "2.70.1",
"tslib": "2.3.1",
"typescript": "4.6.3"
},
"volta": {
"node": "20.13.0"
}
}