This repository has been archived by the owner on Mar 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.7 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
{
"name": "blog",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build --modern",
"start": "nuxt start",
"generate": "nuxt generate && npx gzipper c -v --level 9 -e nojekyll,jpg,jpeg,webp,png,woff2,woff,ico,txt ./dist",
"generate:valet": "nuxt generate && npx gzipper c -v --level 9 -e nojekyll,jpg,jpeg,webp,png,woff2,woff,ico,txt ./dist && rsync ./dist/ ~/Dev/valet/blog -cavP",
"generate:deploy": "nuxt generate && npx gzipper c -v --level 9 -e nojekyll,jpg,jpeg,webp,png,woff2,woff,ico,txt ./dist && mcli cp -r dist/ prod/blog/",
"lint:js": "eslint --ext .js,.vue,.json,.md --ignore-path .gitignore .",
"lint": "yarn lint:js"
},
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxtjs/axios": "^5.13.1",
"@tailwindcss/typography": "^0.4.0",
"core-js": "^3.10.1",
"nuxt": "^2.15.6",
"vue-intersect": "^1.1.6"
},
"devDependencies": {
"@aceforth/nuxt-optimized-images": "^1.4.0",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@nuxtjs/eslint-config": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/fontawesome": "^1.1.2",
"@nuxtjs/moment": "^1.6.1",
"@nuxtjs/tailwindcss": "^4.0.3",
"autoprefixer": "^10.2.5",
"babel-eslint": "^10.1.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"gzipper": "^4.4.0",
"postcss": "^8.2.10",
"postcss-easy-import": "^3.0.0",
"prettier": "^2.2.1",
"sass": "^1.35.2",
"sass-loader": "^10.2.0",
"tailwindcss": "^2.2.4"
}
}