-
Notifications
You must be signed in to change notification settings - Fork 278
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "plop-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"type": "module",
"scripts": {
"test": "turbo run test --parallel",
"format": "eslint -c .eslintrc.cjs --fix ./",
"prepare": "husky install",
"plop": "node ./packages/plop/bin/plop.js"
},
"bugs": {
"url": "https://github.com/plopjs/plop/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/plopjs/plop.git"
},
"homepage": "https://plopjs.com",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"turbo": "^1.11.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"packageManager": "[email protected]"
}