-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
82 lines (82 loc) · 2.93 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
{
"name": "create-exposed-app",
"version": "9.0.0",
"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 <[email protected]> (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",
"commitlint--all": "npx commitlint --from $(git rev-list --max-parents=0 HEAD) --to HEAD",
"manual-test": "bash bin/manual-test.sh",
"manual-test--cleanup": "bash bin/manual-test--cleanup.sh"
},
"dependencies": {
"debug": "^4.3.3",
"dotenv": "^10.0.0",
"hygen": "^6.1.0"
},
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/preset-env": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@commitlint/cli": "16.0.1",
"@commitlint/config-conventional": "16.0.0",
"@types/debug": "4.1.7",
"@types/jest": "27.4.0",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"babel-jest": "27.4.5",
"doctoc": "2.1.0",
"esbuild": "0.14.10",
"eslint": "8.6.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-formatter-pretty": "4.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "25.3.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-unicorn": "40.0.0",
"gen-esm-wrapper": "1.1.3",
"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": "27.4.5",
"markdownlint-cli": "0.30.0",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"sort-package-json": "1.53.1",
"typescript": "4.5.4"
}
}