-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.84 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
{
"name": "radio-listener",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node --enable-source-maps dist/server.js",
"start:watch": "nodemon ./dist/server.js ./dist/jobs/processor.ts",
"build": "rm -rf dist && esbuild ./src/server.ts ./src/jobs/processor.ts --bundle --target=es2022 --platform=node --sourcemap --outdir=dist",
"build:watch": "yarn build --watch",
"dev": "yarn build && yarn start:watch & yarn build:watch",
"test": "jest --watch"
},
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=18.12.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"@socket.io/redis-adapter": "^8.2.1",
"axios": "^1.4.0",
"connect-redis": "^7.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"execa": "^7.1.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mustache": "^4.2.0",
"node-internet-radio": "^0.2.1",
"qs": "^6.11.2",
"querystring": "^0.2.1",
"redis": "^4.6.7",
"remeda": "^1.19.0",
"socket.io": "^4.6.2",
"socket.io-adapter": "^2.5.2",
"spotify-web-api-node": "^5.0.2",
"typescript": "^5.1.3",
"xstate": "^4.37.2"
},
"devDependencies": {
"@emoji-mart/data": "^1.1.2",
"@tsconfig/node18": "^2.0.1",
"@types/cookie-parser": "^1.4.3",
"@types/eslint": "^8",
"@types/express": "^4.17.17",
"@types/express-session": "^1",
"@types/jest": "^29.5.2",
"@types/mustache": "^4.2.2",
"@types/spotify-web-api-node": "^5.0.7",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "^5.60.0",
"esbuild": "^0.18.5",
"eslint": "^8.43.0",
"jest": "^29.5.0",
"node-mocks-http": "^1.12.2",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.0"
},
"volta": {
"node": "18.12.1",
"yarn": "3.6.0-git.20230603.hash-3c8237cb"
}
}