This repository was archived by the owner on Jun 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.28 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.28 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
{
"name": "OfficeJukebox",
"version": "1.0.0",
"description": "A online jukebox app for BJSS which allows multiple users to queue up songs to a shared queue",
"repository": {
"url": "https://github.com/perjermer/BJSSOfficeJukebox"
},
"main": "index.js",
"scripts": {
"doc": "apidoc -e node_modules -o docs/",
"dev": "node index.js",
"prestart": "next build",
"start": "node index.js -p $PORT",
"heroku-postbuild": "next build",
"watch": "nodemon index.js",
"test": "jest --detectOpenHandles --verbose --coverage",
"testing": "jest --watchAll",
"docz:dev": "docz dev",
"docz:build": "docz build"
},
"keywords": [
"Spotify",
"Music",
"Music Queue"
],
"author": "Pierce Morris, James Bennett, Rob Laing, Xingko Song, Runzhuo Li, Yousef Ismail",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-regular-svg-icons": "^5.7.2",
"@fortawesome/free-solid-svg-icons": "^5.7.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"array-sort": "^1.0.0",
"axios": "^0.18.0",
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"config": "^2.0.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "~4.16.0",
"express-async-errors": "^3.1.1",
"fs": "0.0.1-security",
"i": "^0.3.6",
"joi": "^14.0.6",
"joi-browser": "^13.4.0",
"joi-objectid": "^2.0.0",
"jsonwebtoken": "^8.3.0",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.11",
"mongodb": "^3.2.3",
"mongoose": "^5.5.1",
"net": "^1.0.2",
"next": "^7.0.2",
"node-sass": "^4.11.0",
"npm": "^6.8.0",
"query-string": "^6.2.0",
"querystring": "~0.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-rangeslider": "^2.2.0",
"react-show-more": "^2.0.0",
"react-show-more-text": "^1.0.4",
"react-simple-show-more": "^1.0.2",
"request": "^2.83.0",
"spotify-web-api-js": "^0.22.1",
"spotify-web-api-node": "^4.0.0",
"victory": "^32.2.0",
"victory-bar": "^32.2.0"
},
"devDependencies": {
"apidoc": "^0.17.7",
"jest": "^23.6.0",
"morgan": "^1.9.1",
"node-pre-gyp": "^0.12.0",
"supertest": "^3.3.0"
}
}