-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.5 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
52
53
54
55
56
{
"name": "RA Resource",
"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\"",
"buildBundle": "webpack",
"watchBundle": "webpack watch",
"heroku-postbuild": "webpack --mode production"
},
"keywords": [
"Node",
"MVC",
"Redis",
"Login"
],
"author": "Cody Van De Mark / Austin Willoughby",
"license": "Apache 2.0",
"dependencies": {
"@creativebulma/bulma-tooltip": "^1.2.0",
"bcrypt": "^6.0.0",
"compression": "^1.8.1",
"connect-redis": "^7.1.1",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-handlebars": "^8.0.1",
"express-session": "^1.18.2",
"helmet": "^8.1.0",
"ioredis": "^5.10.1",
"mongodb": "^7.1.1",
"mongoose": "^8.23.0",
"multer": "^2.1.1",
"redis": "^5.9.0",
"serve-favicon": "^2.5.1",
"underscore": "^1.13.7"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@eslint/js": "^10.0.1",
"babel-loader": "^10.1.1",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"nodemon": "^3.1.10",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"webpack": "^5.106.2",
"webpack-cli": "^6.0.1"
}
}