forked from plopjs/plop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "plop-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/plop-pack-fancy-comments"
]
},
"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": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.0",
"prettier": "^2.6.2",
"turbo": "^1.2.5",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}