-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "project-2",
"version": "1.0.0",
"description": "This is just a placeholder until we come up with a concept and name for this group project",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "nodemon server.js",
"dev": "nodemon server.js",
"start": "node server.js",
"seed": "node seeds/seeds.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/candracodes/project-2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/candracodes/project-2/issues"
},
"homepage": "https://github.com/candracodes/project-2#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"connect-session-sequelize": "^7.1.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.4",
"express-session": "^1.17.2",
"express-validator": "^6.13.0",
"jquery": "^3.6.0",
"jquery-ui": "^1.13.0",
"morgan": "^1.10.0",
"mysql2": "^2.3.3-rc.0",
"sequelize": "^6.9.0"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"nodemon": "^2.0.15",
"prettier": "2.4.1"
}
}