-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.09 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
79
80
81
82
83
84
85
{
"name": "guacamayaairlines",
"version": "0.0.1",
"description": "Guacamaya Airlines website.",
"main": "start.js",
"engines": {
"node": ">= 7.6.0"
},
"now": {
"dotenv": "variables.env.now"
},
"scripts": {
"start": "node ./start.js",
"watch": "nodemon ./start.js --ignore public/",
"dev": "concurrently \"npm run watch\" \"npm run assets\" --names \"💻,📦\" --prefix name",
"assets": "webpack -w --display-max-modules 0",
"test": "none"
},
"browserslist": "last 3 versions",
"repository": {
"type": "git",
"url": "none"
},
"keywords": [
"Express.js",
"Passport.js",
"Webpack",
"start",
"sass",
"SQL"
],
"author": "Carlos Fontes",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"connect-flash": "^0.1.1",
"connect-session-sequelize": "^6.0.0",
"cookie-parser": "^1.4.3",
"dompurify": "^1.0.8",
"dotenv": "^6.2.0",
"es6-promisify": "^6.0.1",
"express": "^4.16.4",
"express-session": "^1.15.6",
"express-validator": "^5.3.0",
"forever": "^0.15.3",
"glob": "^7.1.3",
"html-to-text": "^4.0.0",
"jimp": "^0.6.0",
"juice": "^5.0.1",
"md5": "^2.2.1",
"moment": "^2.22.2",
"multer": "^1.4.1",
"mysql2": "^1.6.4",
"nodemailer": "^4.7.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-sequelize": "^0.8.0",
"pug": "^2.0.3",
"sequelize": "^4.42.0",
"slugs": "^0.1.3",
"uuid": "^3.3.2",
"validator": "^10.9.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"autoprefixer": "^9.4.2",
"babel-loader": "^8.0.4",
"concurrently": "^4.1.0",
"css-loader": "^2.0.0",
"eslint": "^5.10.0",
"file-loader": "^2.0.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.10.0",
"nodemon": "^1.18.7",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
}
}