-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "rc40-challenge22",
"version": "1.0.0",
"description": "This project is a Single Page Application (SPA) that utilizes a RESTful API to perform BREADS (Browse, Read, Edit, Add, Delete, Sort) operations. The backend is built using Express JS and EJS for templating, while MongoDB is used as the database. The frontend is developed using Vanilla JavaScript and jQuery, with Bootstrap 5 and FontAwesome for styling and icons.",
"type": "module",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aryajava/rc40-challenge22-spa.git"
},
"keywords": [
"SinglePageApplication",
"SPA",
"RESTfulAPI",
"BREADS",
"ExpressJS",
"EJS",
"MongoDB",
"JavaScript",
"jQuery",
"Bootstrap5",
"FontAwesome",
"Web Development",
"Full Stack",
"NodeJS",
"pagination"
],
"author": "aryajava",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/aryajava/rc40-challenge22-spa/issues"
},
"homepage": "https://github.com/aryajava/rc40-challenge22-spa#readme",
"devDependencies": {
"nodemon": "^3.1.7"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.1",
"http-errors": "~1.6.3",
"jquery": "^3.7.1",
"moment": "^2.30.1",
"mongodb": "^6.9.0",
"morgan": "~1.9.1"
}
}