-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "oscakampala-website-backend",
"version": "1.0.0",
"description": "oscakampala-website-backend api",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "NODE_ENV=production node ./src/server.js",
"dev": "NODE_ENV=development nodemon ./src/server.js",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/OSCA-Kampala-Chapter/oscakampala-website-backend.git"
},
"keywords": [
"Node",
"Express",
"MongoDB",
"OSCA",
"KAMPALA"
],
"author": "OSCA-Kampala-Chapter",
"license": "ISC",
"bugs": {
"url": "https://github.com/OSCA-Kampala-Chapter/oscakampala-website-backend/issues"
},
"homepage": "https://github.com/OSCA-Kampala-Chapter/oscakampala-website-backend#readme",
"dependencies": {
"argon2": "^0.28.7",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"config": "^3.3.8",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-unless": "^2.1.1",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.1",
"mongoose-unique-validator": "^3.1.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"redis": "^4.5.1",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"prettier": "^2.7.1"
}
}