-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1016 Bytes
/
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
{
"name": "redit_tutorial",
"version": "1.0.0",
"description": "Tutorial to learn node.js and express by remaking parts of redit",
"main": "server.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisBarnes7404/redit_tutorial.git"
},
"author": "Chris Barnes",
"license": "ISC",
"bugs": {
"url": "https://github.com/ChrisBarnes7404/redit_tutorial/issues"
},
"homepage": "https://github.com/ChrisBarnes7404/redit_tutorial#readme",
"dependencies": {
"bcrypt": "^3.0.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongodb": "^3.5.2",
"mongoose": "^5.8.10",
"path": "^0.12.7"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^7.0.1"
}
}