-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.97 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
{
"name": "do-me-lint",
"version": "1.22.0",
"description": "CLI tool to make your JS/TS projects linted with ESLint and Prettier for the best possible developer experience.",
"main": "dist/index.js",
"bin": {
"do-me-lint": "bin/run.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nikolai-katkov/do-me-lint"
},
"keywords": [
"lint",
"eslint",
"prettier"
],
"scripts": {
"prepare": "npm run build",
"prebuild": "rm -rf dist/",
"build": "tsc",
"start": "bin/run.js",
"start:dev": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint . --cache",
"postversion": "git push && git push --tags"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/eslint": "^8.37.0",
"@types/glob": "^7.2.0",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.5.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.36",
"@types/node-fetch": "^2.6.1",
"@types/prettier": "^2.6.3",
"@types/yarnpkg__lockfile": "^1.1.5",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-array-func": "^4.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-playwright": "^0.9.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-regexp": "^2.5.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-unicorn": "^49.0.0",
"eslint-plugin-yml": "^1.10.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"type-fest": "^2.19.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"chalk": "^4.1.2",
"eslint": "^8.55.0",
"find-up": "^5.0.0",
"glob": "^8.0.3",
"inquirer": "^8.2.4",
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.0.0",
"outdent": "^0.8.0",
"prettier": "^3.1.1"
}
}