forked from iamturns/create-exposed-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.53 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
{
"name": "create-exposed-app",
"version": "8.1.3",
"description": "App generator with everything exposed for maximum control (powered by TypeScript, ESBuild, Jest, ESLint, GitHub Actions, Prettier, 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 <matt@iamturns.com> (https://iamturns.com)",
"bin": {
"create-exposed-app": "dist/index.js"
},
"scripts": {
"dev": "npm run build-js--watch",
"dev-tdd": "npm run test--watch",
"format": "bash bin/format.sh",
"lint": "run-p lint-es lint-ts lint-md",
"lint-es": "eslint --ext .js,.jsx,.ts,.tsx --format=pretty ./",
"lint-ts": "tsc --noEmit",
"lint-md": "markdownlint '**/*.md'",
"test": "jest",
"test--coverage": "npm run test -- --coverage",
"test--watch": "npm run test -- --watch",
"build": "rimraf dist && mkdir dist && run-p build-js build-templates",
"build--watch": "npm run build-js--watch",
"build-js": "node bin/build.js",
"build-js--watch": "node bin/build.js --watch",
"build-templates": "mkdir ./dist/templates && cp -r ./src/templates ./dist",
"validate": "run-p --print-label lint test build"
},
"dependencies": {
"debug": "4.3.1",
"dotenv": "8.2.0",
"hygen": "6.0.4"
},
"devDependencies": {
"@babel/core": "7.13.10",
"@babel/preset-env": "7.13.10",
"@babel/preset-typescript": "7.13.0",
"@types/debug": "4.1.5",
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "4.17.0",
"babel-jest": "26.6.3",
"doctoc": "2.0.0",
"esbuild": "0.9.2",
"eslint": "7.22.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.1.0",
"eslint-formatter-pretty": "4.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.2.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-unicorn": "28.0.2",
"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": "26.6.3",
"markdownlint-cli": "0.27.1",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"sort-package-json": "1.49.0",
"typescript": "4.2.3"
}
}