-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
{
"name": "plop-action-eslint",
"description": "Use ESLint to format generated code with plop.js",
"private": true,
"author": {
"name": "Stefan Natter",
"url": "https://natterstefan.me"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "turbo run build",
"lerna:publish": "lerna publish from-package",
"lerna:version": "HUSKY_SKIP_HOOKS=1 lerna version --no-commit-hooks --no-changelog --no-private",
"lint": "tsc && eslint \"./**/*.{ts,tsx}\"",
"prelerna:publish": "node ./scripts/prepublish.js && yarn build",
"prepare": "is-ci || husky install",
"test": "turbo run test"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@types/eslint": "^8.56.5",
"@types/jest": "^29.5.12",
"all-contributors-cli": "^6.26.1",
"commitizen": "^4.3.0",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-ns-ts-base": "4.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"lerna": "^8.1.2",
"lerna-changelog": "^2.2.0",
"plop": "^3.1.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"turbo": "^1.12.5",
"typescript": "^5.4.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]",
"bugs": {
"url": "https://github.com/natterstefan/plop-eslint/issues"
},
"homepage": "https://github.com/natterstefan/plop-eslint#readme",
"repository": {
"type": "git",
"url": "https://github.com/natterstefan/plop-eslint"
}
}