|
| 1 | +{ |
| 2 | + "name": "@amplication/plugin-{{PLUGIN_KEBAB_CASE_NAME}}", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "{{PLUGIN_DESCRIPTION}}", |
| 5 | + "main": "dist/index.js", |
| 6 | + "scripts": { |
| 7 | + "prepublishOnly": "npm run build", |
| 8 | + "dev": "webpack --watch", |
| 9 | + "build": "webpack", |
| 10 | + "prebuild": "rimraf dist", |
| 11 | + "lint": "eslint . --ext .ts,.js", |
| 12 | + "lint:fix": "eslint . --ext .ts,.js --fix", |
| 13 | + "format": "prettier --write \"src/**/*.{ts,js,json,md}\"", |
| 14 | + "format:check": "prettier --check \"src/**/*.{ts,js,json,md}\"" |
| 15 | + }, |
| 16 | + "author": "{{PLUGIN_AUTHOR}}", |
| 17 | + "license": "{{PLUGIN_LICENSE}}", |
| 18 | + "devDependencies": { |
| 19 | + "@amplication/code-gen-types": "^3.2.1", |
| 20 | + "@amplication/code-gen-utils": "^0.0.9", |
| 21 | + "@amplication/csharp-ast": "^0.0.7", |
| 22 | + "@babel/parser": "^7.23.0", |
| 23 | + "@babel/types": "^7.23.0", |
| 24 | + "@types/lodash": "^4.14.200", |
| 25 | + "@typescript-eslint/eslint-plugin": "^6.21.0", |
| 26 | + "@typescript-eslint/parser": "^6.21.0", |
| 27 | + "copy-webpack-plugin": "^12.0.2", |
| 28 | + "eslint": "^8.57.1", |
| 29 | + "eslint-config-prettier": "^9.1.0", |
| 30 | + "eslint-plugin-prettier": "^5.2.1", |
| 31 | + "jest-mock-extended": "^3.0.5", |
| 32 | + "lodash": "^4.17.21", |
| 33 | + "prettier": "^3.3.3", |
| 34 | + "rimraf": "^5.0.5", |
| 35 | + "ts-loader": "^9.5.0", |
| 36 | + "typescript": "^5.2.2", |
| 37 | + "webpack": "^5.89.0", |
| 38 | + "webpack-cli": "^5.1.4", |
| 39 | + "pascal-case": "^3.1.2" |
| 40 | + } |
| 41 | +} |
0 commit comments