LoginSignup
0
0

More than 1 year has passed since last update.

package.json 自分用メモ

Last updated at Posted at 2023-01-14

#___

{
  "name": "ts-basic-demo",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "build": "webpack --mode=production", 
// npmスクリプトと呼ばれるもので、上で記載されたものを起動
//webパックを使って、本番用のファイルをビルドする

    "start": "webpack-cli serve --mode development"
  },

  "author": "",
  "license": "ISC",
  "devDependencies": {
    "ts-loader": "^8.0.12",
    "typescript": "^4.1.3",
    "webpack": "^5.11.0",
    "webpack-cli": "^4.3.0",
    "webpack-dev-server": "^3.11.0"
  }
}
0
0
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
0