|
1 | 1 | { |
2 | 2 | "name": "create-exposed-app", |
| 3 | + "version": "0.0.0-development", |
3 | 4 | "description": "App generator with everything exposed for maximum control (powered by TS, Babel, Jest, ESLint, Prettier, CircleCI, and more)", |
4 | | - "license": "MIT", |
5 | | - "author": "Matt Turnbull <[email protected]> (https://iamturns.com)", |
6 | 5 | "homepage": "https://github.com/iamturns/create-exposed-app", |
| 6 | + "bugs": { |
| 7 | + "url": "https://github.com/iamturns/create-exposed-app/issues" |
| 8 | + }, |
7 | 9 | "repository": { |
8 | 10 | "type": "git", |
9 | 11 | "url": "https://github.com/iamturns/create-exposed-app.git" |
10 | 12 | }, |
11 | | - "bugs": { |
12 | | - "url": "https://github.com/iamturns/create-exposed-app/issues" |
13 | | - }, |
14 | | - "version": "0.0.0-development", |
| 13 | + "license": "MIT", |
| 14 | + "author": "Matt Turnbull <[email protected]> (https://iamturns.com)", |
15 | 15 | "main": "dist/create-exposed-app.js", |
16 | 16 | "bin": { |
17 | 17 | "create-exposed-app": "dist/create-exposed-app-cli.js" |
18 | 18 | }, |
19 | 19 | "scripts": { |
20 | | - "pre-commit": "lint-staged", |
21 | 20 | "build": "run-p --print-label build-src build-dts", |
22 | 21 | "build--watch": "onchange 'src/**/*' --initial --kill --delay 1000 -- npm run build", |
23 | 22 | "build-dts": "tsc --emitDeclarationOnly", |
|
32 | 31 | "format-doctoc": "doctoc --maxlevel 3 --notitle ./README.md ./DEVELOPING.md", |
33 | 32 | "format-eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --fix ./ >/dev/null 2>&1 || true", |
34 | 33 | "format-imports": "import-sort --write '**/*.{js,jsx,ts,tsx}'", |
35 | | - "format-package-json": "prettier-package-json --write", |
| 34 | + "format-package-json": "sort-package-json", |
36 | 35 | "format-prettier": "prettier --write '**/*.{css,gql,graphql,html,js,jsx,json,less,md,mdx,scss,ts,tsx,vue,yaml,yml}' '.editorconfig' 'LICENSE'", |
37 | 36 | "lint": "run-p lint-eslint lint-markdown", |
38 | 37 | "lint--watch": "onchange 'src/**/*' --initial --kill --delay 1000 -- npm run lint", |
39 | 38 | "lint-eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./", |
40 | 39 | "lint-markdown": "markdownlint --ignore coverage --ignore dist --ignore examples --ignore node_modules '**/*.md' '.**/**/*.md'", |
| 40 | + "pre-commit": "lint-staged", |
41 | 41 | "prepublish": "rimraf dist && npm run build", |
42 | 42 | "start": "node --require dotenv/config dist/create-exposed-app-cli.js", |
43 | 43 | "start--dev": "NODE_ENV=development npm run start", |
|
103 | 103 | "npm-run-all": "^4.1.5", |
104 | 104 | "onchange": "^5.2.0", |
105 | 105 | "prettier": "^1.16.2", |
106 | | - "prettier-package-json": "^2.1.0", |
107 | 106 | "rimraf": "^2.6.3", |
| 107 | + "sort-package-json": "^1.22.1", |
108 | 108 | "typescript": "^3.4.1" |
109 | 109 | } |
110 | 110 | } |
0 commit comments