-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.05 KB
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
{
"name": "match",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start:dev": "./node_modules/.bin/nodemon ./bin/www",
"db:create:migration": "sequelize migration:generate --name ",
"db:migrate": "sequelize db:migrate",
"db:rollback": "sequelize db:migrate:undo",
"postinstall": "sequelize db:migrate"
},
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "~1.18.2",
"connect-flash": "^0.1.1",
"connect-pg-simple": "^4.2.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "^4.0.0",
"express": "~4.15.5",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"express-validator": "^4.3.0",
"https": "^1.0.0",
"morgan": "~1.9.0",
"passport": "*",
"passport-http": "*",
"passport-local": "*",
"pg-promise": "^7.1.0",
"sequelize": "^4.19.0",
"sequelize-cli": "^3.0.0",
"serve-favicon": "~2.4.5",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4"
},
"devDependencies": {
"nodemon": "^1.12.1"
}
}