什么是package.json

{
  "name": "webpack-react", // 项目名称
  "version": "1.0.0", // 项目版本
  "homepage": "./", //打包之后资源路径会加上homepage的地址
  "description": "", // 项目描述
  "main": "index.js", // 入口文件
  "scripts": {
    // 指定 npm 执行文件缩写
    "test": "echo \"Error: no test specified\" && exit 1",
    "build": "cross-env NODE_ENV=production webpack  --config ./config/webpack.prod.config.js",
    "start": " cross-env NODE_ENV=development webpack-dev-server --inline --config ./config/webpack.dev.config.js"
  },
  "proxy": "", // 代理
  "keywords": [], // 关键词
  "author": "", // 作者
  "license": "ISC", // 许可证
  "devDependencies": {}, // 开发环境依赖
  "dependencies": {}, // 生产环境依赖
  "engines": {
    // 提示node 和 npm 版本
    "node": ">= 12.16.0",
    "npm": ">= 6.9.0"
  }
}

你可能感兴趣的:(什么是package.json)