-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.99 KB
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
{
"name": "ts-eslint-prettier-husky",
"version": "1.0.0",
"description": "ESLint, Prettier, and Husky configuration for the TypeScript projects that I use.",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"test": "npx playwright test",
"test:authentication": "npx playwright test --config=examples/authentication/playwright.config.ts",
"prettier:watch": "npx onchange 'examples/**/*.ts' -- prettier --write {{changed}}",
"prettier:format": "npx prettier 'examples/**/*.ts' --write",
"eslint:format": "npx eslint --fix 'examples/**/*.ts'",
"format": "npm run prettier:format && npm run eslint:format",
"release": "npx release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major"
},
"lint-staged": {
"*.ts": [
"npm run format",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/elaichenkov/ts-eslint-prettier-husky.git"
},
"keywords": [
"eslit",
"typescript",
"prettier",
"husky",
"config",
"configuration",
"automation",
"template"
],
"author": "Yevhen Laichenkov <elaichenkov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/elaichenkov/ts-eslint-prettier-husky/issues"
},
"homepage": "https://github.com/elaichenkov/ts-eslint-prettier-husky#readme",
"devDependencies": {
"@playwright/test": "^1.12.2",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"onchange": "^7.1.0",
"playwright": "^1.12.2",
"playwright-expect": "^0.1.2",
"prettier": "^2.3.1",
"release-it": "^14.10.0",
"typescript": "^4.3.4"
}
}