forked from iamturns/create-exposed-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 4.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "create-exposed-app",
"description": "App generator with everything exposed for maximum control (powered by TS, Babel, Jest, ESLint, Prettier, CircleCI, and more)",
"license": "MIT",
"author": "Matt Turnbull <[email protected]> (https://iamturns.com)",
"homepage": "https://github.com/iamturns/create-exposed-app",
"repository": {
"type": "git",
"url": "https://github.com/iamturns/create-exposed-app.git"
},
"bugs": {
"url": "https://github.com/iamturns/create-exposed-app/issues"
},
"version": "0.0.0-development",
"main": "dist/create-exposed-app.js",
"bin": {
"create-exposed-app": "dist/bin/create-exposed-app.js"
},
"scripts": {
"pre-commit": "lint-staged",
"build": "run-p --print-label build:src build:dts",
"build:dts": "tsc --emitDeclarationOnly",
"build:dts:watch": "npm run build:dts -- --watch --preserveWatchOutput",
"build:examples": "bash bin/build-examples.sh",
"build:src": "babel src --out-dir dist --extensions .js,.jsx,.ts,.tsx --source-maps",
"build:src:watch": "npm run build:src -- --watch src/**/* --verbose",
"build:watch": "onchange 'src/**/*' --initial --kill --delay 1000 -- npm run build",
"dev": "npm run build:watch",
"display-browser-support": "browserslist --stats && echo '' && browserslist --coverage && echo '' && echo 'See more at https://browserl.ist/'",
"format": "run-s format:doctoc format:package format:imports format:prettier format:eslint",
"format:doctoc": "doctoc --maxlevel 3 --notitle ./README.md",
"format:eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --fix ./ >/dev/null 2>&1 || true",
"format:imports": "import-sort --write '**/*.{js,jsx,ts,tsx}'",
"format:package": "prettier-package-json --write",
"format:prettier": "prettier --write '**/*.{css,gql,graphql,html,js,jsx,json,less,md,mdx,scss,ts,tsx,vue,yaml,yml}' '.editorconfig' 'LICENSE'",
"lint": "run-p lint:eslint lint:markdown",
"lint:eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./",
"lint:markdown": "markdownlint --ignore coverage --ignore dist --ignore examples --ignore node_modules '**/*.md' '.**/**/*.md'",
"lint:watch": "onchange 'src/**/*' --initial --kill --delay 1000 -- npm run lint",
"prepublish": "rimraf dist && npm run build",
"start": "node dist/create-exposed-app.js",
"start:dev": "NODE_ENV=development npm run start",
"test": "jest --passWithNoTests --coverage",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"typecheck:watch": "npm run typecheck -- --watch",
"validate": "run-p --print-label lint typecheck test build"
},
"dependencies": {
"chalk": "^2.4.2",
"cross-spawn": "^6.0.5",
"debug": "^4.1.1",
"ejs": "^2.6.1",
"inquirer": "^6.2.1",
"recursive-copy": "^2.0.9",
"shell-quote": "^1.6.1",
"yargs": "^12.0.5",
"yargs-parser": "^12.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.1.0",
"@types/cross-spawn": "^6.0.0",
"@types/debug": "0.0.31",
"@types/ejs": "^2.6.1",
"@types/inquirer": "0.0.43",
"@types/jest": "^23.3.13",
"@types/shell-quote": "^1.6.0",
"@types/yargs": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^1.1.1",
"browserslist": "^4.4.1",
"doctoc": "^1.4.0",
"eslint": "^5.12.1",
"eslint-config-airbnb-typescript": "^1.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-formatter-pretty": "^2.1.1",
"eslint-plugin-eslint-comments": "^3.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.2.1",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-unicorn": "^7.1.0",
"husky": "^1.3.1",
"import-sort-cli": "^5.2.0",
"import-sort-parser-babylon": "5.2.0",
"import-sort-parser-typescript": "5.0.0",
"import-sort-style-module": "5.0.0",
"jest": "^24.0.0",
"lint-staged": "^8.1.1",
"markdownlint-cli": "^0.14.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"onchange": "^5.2.0",
"prettier": "^1.16.2",
"prettier-package-json": "^2.0.1",
"rimraf": "^2.6.3",
"typescript": "~3.2.4"
}
}