-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "wosca-website-be",
"version": "1.0.0",
"description": "WOSCA website backend",
"main": "server.js",
"scripts": {
"start": "node ./build/server/server.js",
"build": "rimraf ./build && babel ./src --out-dir ./build/",
"server": "nodemon --exec babel-node src/server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/she-code-africa/WOSCA-WEBSITE-BE.git"
},
"bugs": {
"url": "https://github.com/she-code-africa/WOSCA-WEBSITE-BE/issues"
},
"homepage": "https://github.com/she-code-africa/WOSCA-WEBSITE-BE#readme",
"author": "SCA",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.13.12",
"@babel/register": "^7.13.14",
"babel-watch": "^7.4.1",
"nodemon": "^2.0.19"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bunyan": "^1.8.15",
"cors": "^2.8.5",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mailgun-js": "^0.22.0",
"mongoose": "^5.12.3",
"mongoose-autopopulate": "^0.14.0",
"mongoose-slug-updater": "^3.3.0",
"redis": "^3.1.2",
"uuid": "^8.3.2",
"uuid4": "^2.0.2",
"uuidv4": "^6.2.8",
"winston": "^3.3.3"
}
}