forked from FloppySeaSpider/WeatherBeats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.65 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "weatherbeats",
"version": "1.0.0",
"description": "Currated Spotify playlist based on your current location's weather",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"start": "concurrently \"webpack-dev-server\" \"nodemon server/server.js\"",
"dev": "webpack-dev-server",
"serve": "nodemon server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Axolotl-Beats/WeatherBeats.git"
},
"keywords": [
"music",
"weather",
"location",
"spotify",
"api"
],
"author": "https://github.com/Axolotl-Beats",
"license": "MIT",
"bugs": {
"url": "https://github.com/Axolotl-Beats/WeatherBeats/issues"
},
"homepage": "https://github.com/Axolotl-Beats/WeatherBeats#readme",
"dependencies": {
"@mdi/js": "^7.1.96",
"@mdi/react": "^1.6.1",
"@reduxjs/toolkit": "^1.9.3",
"axios": "^1.3.4",
"body-parser": "^1.20.2",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"dotenv-webpack": "^8.0.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-sessions": "^1.0.6",
"fs": "0.0.1-security",
"json-schema": "^0.4.0",
"mongoose": "^7.0.1",
"node-fetch": "^3.3.1",
"nodemon": "^2.0.21",
"os": "^0.1.2",
"path": "^0.12.7",
"react": "^18.2.0",
"react-chat-widget": "^3.1.4",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-redux": "^8.0.5",
"react-spotify-embed": "^2.0.3",
"react-spotify-playback-player": "^2.1.2",
"react-spotify-web-playback": "^0.13.2",
"react-spotify-web-playback-sdk": "^3.0.1",
"react-use": "^17.4.0",
"react-use-websocket": "^4.3.1",
"redux": "^4.2.1",
"spotify-web-api-js": "^1.5.2",
"spotify-web-api-node": "^5.0.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.2",
"bulma": "^0.9.4",
"css-loader": "^6.7.3",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.3",
"mysql": "^2.18.1",
"postcss": "^8.4.21",
"postcss-loader": "^7.1.0",
"sass": "^1.59.2",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}