webstorm-init
Version:
CLI tool to write initial WebStorm settings into a new project
72 lines (71 loc) • 1.98 kB
JSON
{
"name": "webstorm-init",
"version": "0.0.3",
"description": "CLI tool to write initial WebStorm settings into a new project",
"preferGlobal": true,
"bin": {
"webstorm-init": "./bin/webstorm-init",
"wsi": "./bin/wsi"
},
"scripts": {
"build": "tsc & copyfiles --all ./.idea_template/**/* dist",
"debug": "node --inspect=0.0.0.0:13579 --nolazy -r ts-node/register ./src/index.tsx",
"lint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"./src/**/*.{js,jsx,ts,tsx}\" --quiet --fix",
"prepare": "npm run build",
"start": "ts-node ./src",
"watch": "tsc -w"
},
"files": [
"dist/**/*",
"bin/**/*"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Snaptags/webstorm-init"
},
"keywords": [
"WebStorm",
"cli"
],
"author": "Markus Lasermann <snaptags@hey.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Snaptags/webstorm-init/issues"
},
"homepage": "https://github.com/Snaptags/webstorm-init#readme",
"dependencies": {
"@types/fs-extra": "^9.0.1",
"@types/glob": "^7.1.3",
"@types/minimist": "^1.2.0",
"@types/node": "^14.0.27",
"@types/react": "^16.9.46",
"copyfiles": "^2.3.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"glob-promise": "^3.4.0",
"ink": "^3.0.3",
"ink-spinner": "^4.0.0",
"minimist": "^1.2.5",
"open": "^7.1.0",
"pjson": "^1.0.9",
"react": "^16.13.1",
"replace-in-file": "^6.1.0",
"save-dev": "0.0.1-security",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-plugin-react": "^7.20.5",
"husky": "^4.2.5",
"ink-testing-library": "^2.0.1",
"jest": "^26.3.0",
"jest-serializer-ansi": "^1.0.3",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-jest": "^26.1.4"
}
}