-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "apple-music-now-playing",
"version": "0.1.0",
"description": "Now playing on Apple Music.",
"main": "server/server.js",
"type": "module",
"scripts": {
"dev": "nodemon api/index.js",
"client": "node client/server.js",
"build:client": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jimmyclchu/apple-music-now-playing.git"
},
"keywords": [
"apple-music",
"now-playing",
"music",
"express",
"musickit"
],
"author": "Jimmy Chu",
"license": "MIT",
"bugs": {
"url": "https://github.com/jimmyclchu/apple-music-now-playing/issues"
},
"homepage": "https://github.com/jimmyclchu/apple-music-now-playing#readme",
"dependencies": {
"@babel/core": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"@napi-rs/canvas": "^0.1.53",
"babel-loader": "^9.1.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"node-fetch": "^3.3.2",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"dotenv-webpack": "^8.1.0",
"nodemon": "^3.1.4"
}
}