forked from ersilva/Mint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.06 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.06 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
{
"name": "mint",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start:dev": "SET NODE_ENV=development & node ./bin/www",
"start:prod": "SET NODE_ENV=production & node ./bin/www",
"start:test": "SET NODE_ENV=test & node ./bin/www",
"seeds:up": "sequelize --config config/config.json db:seed:undo:all & sequelize --config config/config.json db:seed:all",
"seeds:down": "sequelize --config config/config.json db:seed:undo:all"
},
"engines": {
"node": "^8.9.4"
},
"dependencies": {
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"ejs": "~2.5.7",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"morgan": "~1.9.0",
"mysql2": "^1.5.3",
"sequelize": "^4.37.6",
"sequelize-cli": "^4.0.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"body-parser": "^1.18.2",
"bcrypt-nodejs": "^0.0.3",
"express-handlebars": "^3.0.0",
"fs": "^0.0.1-security",
"cron": "^1.3.0",
"redis": "^2.8.0",
"dateformat": "^3.0.3",
"elasticsearch": "^15.0.0"
}
}