-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.35 KB
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
{
"name": "project",
"version": "1.0.0",
"description": "A Simple Login Example using Node.js, Mongo and Redis",
"main": "./server/app.js",
"scripts": {
"webpack": "webpack",
"webpackWatch": "webpack watch",
"nodemon": "nodemon -e js,html,css --watch ./server --watch ./hosted ./server/app.js",
"start": "node ./server/app.js",
"pretest": "eslint ./server --fix",
"test": "echo \"Tests complete\"",
"heroku-postbuild": "webpack"
},
"keywords": [
"Node",
"MVC",
"Redis",
"Login"
],
"author": "Cody Van De Mark / Austin Willoughby",
"license": "Apache 2.0",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"babel-loader": "^9.2.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"nodemon": "^3.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"connect-redis": "^7.1.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-handlebars": "^7.1.2",
"express-session": "^1.18.0",
"helmet": "^7.1.0",
"mongoose": "^8.2.3",
"redis": "^4.6.13",
"serve-favicon": "^2.5.0",
"underscore": "^1.13.6"
}
}