-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "beatmatch",
"version": "1.0.0",
"description": "",
"main": "app.js",
"engines": {
"node": "16.10.0",
"npm": "7.24.0"
},
"scripts": {
"start": "node app.js",
"server": "nodemon app.js",
"server:debug": "nodemon --inspect app.js",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FarzamA/BeatMatch.git"
},
"keywords": [
"music",
"playlist",
"generator"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FarzamA/BeatMatch/issues"
},
"homepage": "https://github.com/FarzamA/BeatMatch#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^6.4.0",
"crypto": "^1.0.1",
"express": "^4.17.1",
"gridfs": "^1.0.0",
"gridfs-stream": "^1.1.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"mongodb": "^4.1.4",
"mongoose": "^6.0.12",
"multer": "^1.4.3",
"multer-gridfs-storage": "^5.0.2",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0",
"query-string": "^7.0.1",
"validator": "^13.7.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}