forked from iamturns/create-exposed-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 4.86 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
106
107
108
109
110
111
112
113
114
115
{
"name": "create-exposed-app",
"version": "0.0.0-development",
"description": "App generator with everything exposed for maximum control (powered by TS, Babel, Jest, ESLint, Prettier, CircleCI, and more)",
"homepage": "https://github.com/iamturns/create-exposed-app",
"bugs": {
"url": "https://github.com/iamturns/create-exposed-app/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/iamturns/create-exposed-app.git"
},
"license": "MIT",
"author": "Matt Turnbull <[email protected]> (https://iamturns.com)",
"main": "dist/create-exposed-app.js",
"bin": {
"create-exposed-app": "dist/create-exposed-app-cli.js"
},
"scripts": {
"build": "run-p --print-label build-src build-dts",
"build--watch": "onchange 'src/**/*' --initial --kill --delay 1000 -- npm run build",
"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",
"dev": "NODE_ENV=development npm run build-src--watch",
"dev--debug": "DEBUG=create-exposed-app npm run dev",
"display-browser-support": "browserslist --stats && echo '' && browserslist --coverage && echo '' && echo 'See more at https://browserl.ist/'",
"format": "run-s format-doctoc format-package-json format-imports format-prettier format-eslint",
"format-doctoc": "doctoc --maxlevel 3 --notitle ./README.md ./DEVELOPING.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-json": "sort-package-json",
"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--watch": "onchange 'src/**/*' --initial --kill --delay 1000 -- npm run lint",
"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'",
"prepublish": "rimraf dist && npm run build",
"start": "node --require dotenv/config dist/create-exposed-app-cli.js",
"start--dev": "NODE_ENV=development npm run start",
"start-src": "babel-node --extensions .js,.jsx,.ts,.tsx --require node_modules/dotenv/config src/create-exposed-app-cli.ts",
"start-src--watch": "nodemon --ext js,jsx,ts,tsx --delay 1 --exec npm run start-src",
"test": "jest --passWithNoTests",
"test--coverage": "npm run test -- --coverage",
"test--watch": "npm run test -- --watch",
"typecheck": "tsc --noEmit",
"typecheck--watch": "npm run typecheck -- --watch",
"validate": "run-p --print-label lint typecheck test build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"asyncro": "^3.0.0",
"chalk": "^2.4.2",
"cross-spawn": "^6.0.5",
"debug": "^4.1.1",
"dotenv": "^7.0.0",
"ejs": "^2.6.1",
"inquirer": "^6.2.1",
"recursive-copy": "^2.0.9",
"shell-quote": "^1.6.1",
"yargs-interactive": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-typescript": "^7.3.3",
"@types/async": "^2.4.1",
"@types/cross-spawn": "^6.0.0",
"@types/debug": "^4.1.3",
"@types/ejs": "^2.6.3",
"@types/jest": "^24.0.11",
"@types/node": "11.13.2",
"@types/shell-quote": "^1.6.0",
"@types/yargs-interactive": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"browserslist": "^4.5.4",
"doctoc": "^1.4.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-typescript": "^1.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-formatter-pretty": "^2.1.1",
"eslint-plugin-eslint-comments": "^3.1.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-unicorn": "^8.0.1",
"husky": "^1.3.1",
"import-sort-cli": "^6.0.0",
"import-sort-parser-babylon": "^6.0.0",
"import-sort-parser-typescript": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"jest": "^24.7.0",
"lint-staged": "^8.1.5",
"markdownlint-cli": "^0.14.1",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"onchange": "^5.2.0",
"prettier": "^1.16.2",
"rimraf": "^2.6.3",
"sort-package-json": "^1.22.1",
"typescript": "^3.4.1"
}
}