-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.9 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
{
"name": "morsecodemedia.com",
"version": "2022.01.31",
"description": "morsecodemedia.com - the portfolio of Brandon G. Morse",
"author": "Brandon Morse ([email protected])",
"private": false,
"repository": "https://github.com/morsecodemedia/morsecodemedia",
"license": "GPL-3.0",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"production": "PORT=4000 pm2 start npm --name \"morsecodemedia prod\" -- start",
"stage": "PORT=3000 pm2 start npm --name \"morsecodemedia stage\" -- start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "yarn run lint",
"test": "yarn run lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-brands-svg-icons": "^5.8.2",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@fortawesome/vue-fontawesome": "^0.1.5",
"@nuxtjs/axios": "^5.4.1",
"@nuxtjs/component-cache": "^1.1.4",
"@nuxtjs/dotenv": "^1.3.0",
"@nuxtjs/google-analytics": "^2.0.3",
"@nuxtjs/redirect-module": "^0.2.0",
"@nuxtjs/sitemap": "^1.2.0",
"@nuxtjs/style-resources": "^0.1.2",
"body-parser": "^1.18.3",
"cross-env": "^5.2.0",
"express": "^4.17.3",
"nodemailer": "^6.4.16",
"nodemailer-postmark-transport": "^2.1.1",
"nuxt": "^2.0.0",
"nuxt-imagemin": "^1.0.0",
"nuxt-webfontloader": "^1.1.0",
"postmark": "^2.2.5",
"serialize-javascript": "^3.1.0",
"vue-axe": "^1.0.7",
"vue-lazyload": "^1.2.6",
"vue2-siema": "^0.2.2",
"vuex-persistedstate": "^2.5.4"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.0.1",
"eslint-config-prettier": "^4.2.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-vue": "^5.2.2",
"nodemon": "^1.19.0",
"sass": "^1.39.0",
"sass-loader": "^10"
}
}