-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 998 Bytes
/
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": "spotlite-server",
"version": "1.0.0",
"description": "Final Project for Master: Software Developer course, by CodeNation.",
"main": "src/server.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "jest",
"start": "node src/server.js",
"monitor": "nodemon src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PCM-M46-Coursework/spotlite-server.git"
},
"keywords": [
"codenation",
"mern",
"spotify",
"coursework"
],
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/PCM-M46-Coursework/spotlite-server/issues"
},
"homepage": "https://github.com/PCM-M46-Coursework/spotlite-server#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.3.0",
"sequelize": "^6.31.1",
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}