forked from HunterHester/fusion-fables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "group-project-2",
"description": "Group-Project-2 (Blog)",
"version": "1.0.0",
"main": "server.js",
"engines": {
"npm": "8.19.3"
},
"scripts": {
"test": "jest",
"start": "node server.js",
"seed": "node seeds/seed.js",
"lint": "eslint \"**/*.js\"",
"watch": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HunterHester/Group-Project-2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HunterHester/Group-Project-2/issues"
},
"homepage": "https://github.com/HunterHester/Group-Project-2#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"bootstrap": "^4.6.2",
"connect-session-sequelize": "^7.1.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-handlebars": "^7.0.7",
"express-session": "^1.17.3",
"handlebars": "^4.7.7",
"jest": "^29.5.0",
"moment": "^2.29.4",
"mysql2": "^3.3.0",
"nodemon": "^2.0.22",
"sequelize": "^6.31.1"
},
"devDependencies": {
"eslint": "^8.40.0"
}
}