2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

npm init -y したときに最初にできるpackage.jsonの中身

Last updated at Posted at 2019-05-08

初期状態のpackage.json

package.json
{
  "name": "react_test_project", // プロジェクト名。ディレクトリ名がデフォルト。
  "version": "1.0.0", // バージョン情報
  "description": "", // プロジェクトの説明。
  "main": "index.js", // メインで実行されるjsファイル
  "scripts": {  // npm run で実行するスクリプトファイルを記述する。 *よくいじるのはここ。* 
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [], // キーワード
  "author": "", // 著者情報
  "license": "ISC" // ライセンス情報。
}

追加でよく入れるやつ

package.json
{
    "private": true // GitHub使わない
    "script": {
        "start": "webpack-dev-server", // npm start で実行されるスクリプト
        "webpack": "webpack -d"  // webpackで実行されるスクリプト
    }
    "dependencies" : {
        "react": "^16.8.6"  // npm install する際に入るもの
    }
}

参考サイト

package.jsonの中身を理解する

2
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?