This repository has been archived by the owner on Mar 13, 2023. It is now read-only.
forked from Addie27/drink-with-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "drink-with-me",
"version": "1.0.0",
"description": "A social cocktail/mocktail rating application.",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "sequelize db:migrate:undo && sequelize db:migrate && sequelize db:seed:undo:all && sequelize db:seed:all",
"start": "sequelize db:migrate && sequelize db:seed:undo:all && sequelize db:seed:all && node server.js"
},
"keywords": [
"cocktail",
"node",
"express",
"sequelize"
],
"author": {
"name": "Randy Reitz",
"email": "notthedba@outlook.com",
"url": "https://github.com/NotTheDBA",
"hireable": true
},
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^10.0.0"
},
"dependencies": {
"animate.css": "^4.0.0",
"bcrypt-nodejs": "0.0.3",
"blueimp-md5": "^2.11.1",
"body-parser": "^1.19.0",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-handlebars": "^7.0.1",
"express-session": "^1.16.2",
"mysql": "^2.17.1",
"mysql2": "^3.0.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"request": "^2.88.0",
"sequelize": "^6.1.0",
"sequelize-cli": "^6.1.0"
}
}