create-near-app
Version:
Quickly scaffold your dApp on NEAR Blockchain
105 lines (104 loc) • 2.58 kB
JSON
{
"name": "create-near-app",
"version": "9.0.2",
"description": "Quickly scaffold your dApp on NEAR Blockchain",
"main": "index.js",
"engines": {
"node": ">=16"
},
"files": [
"templates",
"dist/**/*.js"
],
"bin": {
"create-near-app": "index.js"
},
"scripts": {
"start": "npm run build && node index.js",
"build": "tsc",
"test": "npm run build && FORCE_COLOR=1 jest --runInBand",
"test-e2e": "npm run build && ./test/e2e.sh",
"test:update": "jest -u",
"lint": "eslint .",
"fix": "eslint . --fix",
"release": "npm run build && release-it",
"prepack": "npm run build"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"cross-spawn": "^7.0.3",
"ncp": "^2.0.0",
"prompts": "^2.4.2",
"semver": "^7.5.3"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.5",
"@babel/plugin-syntax-flow": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@release-it/conventional-changelog": "^5.1.1",
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^29.5.2",
"@types/ncp": "^2.0.5",
"@types/node": "^20.3.2",
"@types/node-dir": "^0.0.37",
"@types/prompts": "^2.4.4",
"@types/semver": "^7.5.0",
"eslint": "^8.43.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"node-dir": "^0.1.17",
"release-it": "^15.11.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"repository": "https://github.com/near/create-near-app.git",
"author": "Pagoda.co",
"bugs": "https://github.com/near/create-near-app/issues",
"license": "(MIT AND Apache-2.0)",
"keywords": [
"nearprotocol",
"near-protocol",
"assemblyscript",
"rust",
"react",
"smart-contract",
"blockchain"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
}