create-eth-app
Version:
Create Ethereum-powered apps with one command
110 lines (109 loc) • 3.28 kB
JSON
{
"name": "create-eth-app",
"description": "Create Ethereum-powered apps with one command",
"version": "1.8.3",
"bin": "./dist/index.js",
"bugs": {
"url": "https://github.com/paulrberg/create-eth-app/issues"
},
"contributors": [
{
"name": "Paul Razvan Berg",
"url": "https://github.com/paulrberg"
},
{
"name": "Tom French",
"url": "https://github.com/tomafrench"
}
],
"dependencies": {
"chalk": "4.1.2",
"commander": "^9.0.0",
"fs-extra": "^10.0.1",
"got": "11.8.3",
"handlebars": "^4.7.7",
"promisepipe": "^3.0.0",
"prompts": "^2.4.2",
"tar": "^6.1.11",
"update-check": "^1.5.4",
"url-exist": "2.0.2",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/config-lerna-scopes": "^16.2.2",
"@jest/globals": "^27.5.1",
"@octokit/request": "^5.6.3",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.13",
"@types/got": "9.6.12",
"@types/jest": "^27.4.1",
"@types/jest-when": "^3.5.0",
"@types/node": "^17.0.21",
"@types/prompts": "2.0.14",
"@types/tar": "6.1.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@vercel/ncc": "^0.33.3",
"commitizen": "^4.2.4",
"copyfiles": "^2.4.1",
"cross-spawn": "^7.0.3",
"dir-compare": "^4.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-when": "^3.5.1",
"lerna": "^4.0.0",
"lint-staged": "^12.3.5",
"pinst": "^3.0.0",
"prettier": "^2.5.1",
"shx": "^0.3.4",
"tempy": "1.0.1",
"ts-jest": "^27.1.3",
"typescript": "~4.6.2"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/dist",
"CHANGELOG.md"
],
"homepage": "https://github.com/paulrberg/create-eth-app#readme",
"keywords": [
"ethers",
"ethereum",
"react",
"vue",
"web3",
"yarn"
],
"license": "MIT",
"main": "./dist/index.js",
"packageManager": "yarn@3.2.0",
"repository": {
"name": "paulrberg/create-eth-app",
"type": "git",
"url": "https://github.com/paulrberg/create-eth-app"
},
"scripts": {
"build": "ncc build ./src/index.ts --out dist/ && yarn copy-files",
"clean": "shx rm -rf ./coverage ./dist",
"copy-files": "copyfiles --up 1 \"src/gitignore\" dist/",
"lint": "yarn run lint:ts && yarn run prettier:check",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.jsx,.ts,.tsx .",
"_postinstall": "husky install",
"postpublish": "pinst --enable",
"prepack": "yarn build",
"prepublishOnly": "pinst --disable",
"prettier": "prettier --config .prettierrc.yaml --write \"**/*.{js,jsx,json,md,sol,ts,tsx,yaml,yml}\"",
"prettier:check": "prettier --check --config .prettierrc.yaml \"**/*.{js,json,jsx,md,sol,ts,tsx,yaml,yml}\"",
"test": "yarn run test:unit && yarn run test:integration",
"test:integration": "jest test/integration",
"test:unit": "jest test/unit",
"watch": "ncc build ./src/index.ts --out dist/ --watch"
}
}