generated from BuildForSDG/js-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
57
58
59
60
61
62
63
{
"name": "team-083-backend",
"version": "0.0.1",
"description": "Team-083 api backend for BuidforSDG project ",
"keywords": [
"sdg",
"Team-083",
"Api"
],
"directories": {
"test": "__tests__"
},
"private": false,
"_commented": "main dist/index.js",
"main": "src/index.js",
"scripts": {
"test": "mocha __tests__ --recursive --bail --timeout 10000 --exit",
"lint": "eslint \"src/**/*.js\"",
"start": "node src/index",
"dev": "nodemon src/index"
},
"author": {
"name": "Build For SDG",
"email": "[email protected]"
},
"homepage": "https://github.com/BuildForSDG/Team-083-Backend#readme",
"repository": {
"type": "git",
"url": "https://github.com/BuildForSDG/Team-083-Backend.git"
},
"bugs": {
"url": "https://github.com/BuildForSDG/Team-083-Backend/issues"
},
"license": "MIT",
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"istanbul": "^0.4.5",
"jsonwebtoken": "^8.5.1",
"mocha": "^7.1.2",
"mocha-lcov-reporter": "^1.3.0",
"mongoose": "^5.9.12",
"multer": "^1.4.2",
"uuidv1": "^1.6.14",
"validator": "^13.0.0",
"winston": "^3.2.1",
"winston-mongodb": "^5.0.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.3"
},
"browserslist": [
"last 1 Chrome versions"
]
}