-
Notifications
You must be signed in to change notification settings - Fork 295
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.11 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.11 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
{
"name": "plop-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"type": "module",
"scripts": {
"test": "turbo run test --parallel",
"format": "prettier --write .",
"lint": "eslint .",
"plop": "node ./packages/plop/bin/plop.js",
"prepare": "husky"
},
"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.2",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.2",
"@vitest/eslint-plugin": "^1.6.6",
"eslint": "^9.39.2",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"turbo": "^2.7.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --cache --fix"
]
},
"packageManager": "yarn@4.9.4"
}