-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.51 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": "the-geek-geveloper",
"version": "1.0.0",
"description": "The Geek Developer Portfolio",
"author": "Hugo Carneiro <[email protected]>",
"private": true,
"config": {
"nuxt": {
"host": "localhost",
"port": "3333"
}
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server --watch config --watch api",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-regular-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/vue-fontawesome": "^0.1.6",
"@nuxtjs/axios": "^5.5.4",
"@nuxtjs/google-analytics": "^2.2.0",
"@nuxtjs/onesignal": "^3.0.0-beta.14",
"@nuxtjs/pwa": "^2.6.0",
"@nuxtjs/sitemap": "^1.2.0",
"async": "^3.1.0",
"aws-sdk": "^2.485.0",
"basic-auth": "^2.0.1",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"bootstrap-vue": "^2.0.0-rc.11",
"busboy": "^0.3.1",
"busboy-body-parser": "^0.3.2",
"compression": "^1.7.4",
"connect-busboy": "0.0.2",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"express": "^4.17.1",
"file-extension": "^4.0.5",
"gm": "^1.23.1",
"helmet": "^3.18.0",
"image-size": "^0.7.4",
"jquery": "^3.4.1",
"lodash": "^4.17.15",
"medium-json-feed": "0.0.3",
"mixitup": "^3.3.1",
"nuxt": "^2.8.1",
"nuxt-webfontloader": "^1.1.0",
"path": "^0.12.7",
"pg": "^7.11.0",
"redis": "^2.8.0",
"sequelize": "^5.19.0",
"vue-awesome-swiper": "^3.1.3",
"vue-goodshare": "^1.3.2",
"vuejs-dialog": "^1.4.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"@nuxtjs/eslint-module": "^0.0.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.1",
"eslint-config-standard": ">=12.0.0",
"eslint-plugin-import": ">=2.16.0",
"eslint-plugin-jest": ">=22.3.0",
"eslint-plugin-node": ">=8.0.1",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-promise": ">=4.0.1",
"eslint-plugin-standard": ">=4.0.0",
"eslint-plugin-vue": "^5.2.2",
"babel-core": "7.0.0-bridge.0",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"sass-loader": "^7.1.0"
},
"engines": {
"node": "10.15.3"
}
}