-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 832 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 832 Bytes
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
{
"name": "auth-api-starterpack",
"version": "2.0.0",
"description": "Starter pack for the final project in BEW 1.3.",
"main": "server.js",
"scripts": {
"test": "mocha --timeout 10000",
"lint": "eslint"
},
"author": "Mathyas Papp & Joanna Kang",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongodb": "^3.6.4",
"mongoose": "^5.11.19"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^8.2.1"
}
}