-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.4 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
{
"name": "nuxt-express-social-auth",
"version": "1.0.0",
"description": "Make Authentication web application using nuxt.js, vuetify, express and passport.js.",
"author": "Maxbloodz",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"@nuxtjs/auth": "^4.9.1",
"@nuxtjs/axios": "^5.10.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"express-validator": "^6.5.0",
"hashids": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.1.0",
"nuxt": "^2.0.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth2": "^0.2.0",
"sequelize": "^5.21.11",
"vue-sweetalert2": "^3.0.5",
"vuelidate": "^0.7.5"
},
"devDependencies": {
"nodemon": "^1.18.9",
"@nuxtjs/vuetify": "^1.0.0",
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1"
}
}