-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.47 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.47 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
{
"name": "backend",
"version": "1.0.0",
"engines": {
"node": "v17.7.2"
},
"description": "Backend code for Bachelorproject - The Kahoot! League",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"seed:prod": "node seeds.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bachelorproject-Spring-22/backend.git"
},
"keywords": [
"NTNU",
"bachelor",
"backend"
],
"author": "Cornelius Sandmæl, Glenn Hansen, Tom Schrier",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bachelorproject-Spring-22/backend/issues"
},
"homepage": "https://github.com/Bachelorproject-Spring-22/backend#readme",
"devDependencies": {
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"xlsx": "^0.18.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.2",
"compression": "^1.7.4",
"convert-excel-to-json": "^1.7.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-jwt": "^6.1.1",
"express-jwt-middleware": "^1.0.3",
"helmet": "^5.0.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"mongoose": "^6.2.3",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
}
}