-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.9 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
{
"name": "gradientize",
"version": "1.0.0",
"description": "A visual browser for Spotify",
"main": "index.js",
"proxy": "http://localhost:3000",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"dev": "webpack -w",
"serve": "npx webpack-dev-server --config webpack.config.js",
"server": "nodemon server/index.js",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run build\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbarkerdudley/gradientize.git"
},
"keywords": [
"spotify"
],
"author": "S. Barker Dudley",
"license": "ISC",
"bugs": {
"url": "https://github.com/sbarkerdudley/gradientize/issues"
},
"homepage": "https://github.com/sbarkerdudley/gradientize#readme",
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@mantine/core": "^3.6.0",
"@mantine/hooks": "^3.6.0",
"@mantine/styles": "^3.6.0",
"axios": "^0.24.0",
"babel-loader": "^8.2.3",
"babel-polyfill": "^6.26.0",
"cookie-session": "^2.0.0",
"css-loader": "^6.5.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"fast-average-color": "^7.0.1",
"graphql": "^16.3.0",
"js-cookie": "^3.0.1",
"mongoose": "^6.0.14",
"nodemon": "^2.0.15",
"passport": "^0.5.0",
"passport-spotify": "^2.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"react-spotify-api": "^3.0.0",
"react-spotify-auth": "^1.4.3",
"redis": "^4.0.2"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^7.0.0",
"cors": "^2.8.5",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
}
}