-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Addie27/drink-with-me.git"
},
"keywords": [
"cocktail",
"node",
"express",
"sequelize"
],
"author": "Team Restless Dust",
"contributors": [
{
"name": "Kushagra Bhavsar",
"email": "kushagra.8866@gmail.com",
"url": "https://github.com/kushbhavsar",
"hireable": true
},
{
"name": "Jonathan Dowd",
"email": "jdowd20@gmail.com",
"url": "https://github.com/Jokedo",
"hireable": true
},
{
"name": "Adeline Johnson",
"email": "groblewski.adeline@gmail.com",
"url": "https://github.com/Addie27",
"hireable": true
},
{
"name": "Randy Reitz",
"email": "notthedba@outlook.com",
"url": "https://github.com/NotTheDBA",
"hireable": true
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Addie27/drink-with-me/issues"
},
"homepage": "https://github.com/Addie27/drink-with-me#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"mocha": "^5.1.1"
},
"dependencies": {
"animate.css": "^3.6.1",
"bcrypt-nodejs": "0.0.3",
"blueimp-md5": "^2.10.0",
"body-parser": "^1.18.3",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"mysql": "^2.15.0",
"mysql2": "^1.5.3",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"request": "^2.86.0",
"sequelize": "^4.37.8",
"sequelize-cli": "^4.0.0"
}
}