-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 933 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
{
"name": "expense",
"version": "1.0.0",
"description": "CS 546 Web Programming I: Final Project",
"main": "app.js",
"type": "module",
"scripts": {
"seed": "node ./tasks/seed.js",
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FaithKimSheHer/Finance-Tracker-Web-Application.git"
},
"keywords": [
"expense",
"tracker"
],
"author": "Faith Kim",
"license": "ISC",
"bugs": {
"url": "https://github.com/FaithKimSheHer/Finance-Tracker-Web-Application/issues"
},
"homepage": "https://github.com/FaithKimSheHer/Finance-Tracker-Web-Application#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-handlebars": "^7.1.0",
"express-session": "^1.17.3",
"handlebars": "^4.7.7",
"mongodb": "^5.7.0"
}
}