LoginSignup
0
1

More than 1 year has passed since last update.

【Nuxt頻出パッケージ】自分の使っているpackage.jsonを公開してみる

Last updated at Posted at 2019-06-11

【Nuxt頻出パッケージ】自分の使っているpackage.jsonを公開してみる

Nuxtでサービスを3つほど作って来ましたが、いつも導入している基本的なパッケージ群があるなと感じて来ました。

そこで現在の私のpackage.jsonを公開します。基本的なものしかありません。
読者の方の、新しいパッケージとの出会いが生まれれば幸いです。

package.json
{
  "name": "nuxt-blog-service",
  "version": "1.0.0",
  "description": "My praiseworthy Nuxt.js project",
  "author": "ToshioAkaneya",
  "private": true,
  "scripts": {
    "dev": "cross-env HOST=0.0.0.0 PORT=3000 nuxt",
    "build": "nuxt build",
    "start": "nuxt start",
    "generate": "nuxt generate",
    "heroku-postbuild": "npm run build"
  },
  "dependencies": {
    "@nuxtjs/axios": "^5.0.0",
    "@nuxtjs/google-adsense": "^1.1.3",
    "@nuxtjs/google-analytics": "^2.0.2",
    "@nuxtjs/pwa": "^2.6.0",
    "@nuxtjs/sentry": "^2.2.1",
    "actioncable": "^5.2.2",
    "cross-env": "^5.2.0",
    "fs": "^0.0.1-security",
    "moment": "^2.23.0",
    "net": "^1.0.2",
    "node-sass": "^4.11.0",
    "nuxt": "^2.4.2",
    "pug": "^2.0.3",
    "pug-loader": "^2.4.0",
    "pug-plain-loader": "^1.0.0",
    "request-promise": "^4.2.2",
    "sass-loader": "^7.1.0",
    "tls": "^0.0.1",
    "vue-nl2br": "^0.1.1"
  },
  "devDependencies": {
    "@nuxtjs/sitemap": "^0.2.0",
    "@nuxtjs/vuetify": "^0.5.1",
    "nodemon": "^1.11.0"
  }
}

終わりに

私は現在、Web3のサービスの開発をしています。詳しくはこちらの記事をご覧下さい。
無料でイーサリアムが当たる、Web3時代の寄付サイトを作った話

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1