forked from pleisto/flappy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"name": "flappy-monorepo-root",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*",
"tools/*",
"examples/*",
"docs"
],
"volta": {
"node": "20.6.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{json,yml,yaml,md,mdx,js,jsx,ts,tsx}": [
"prettier --write"
],
"*.code-workspace": [
"prettier --parser json --write"
]
},
"scripts": {
"dev": "yarn workspace @pleisto/flappy-devkit dev",
"node-example": "yarn workspace @pleisto/node-example",
"commit": "cz",
"postinstall": "run dev is-ci || husky install"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "yarn@3.6.4",
"devDependencies": {
"@pleisto/eslint-plugin": "^1.4.84",
"@types/node": "^20.8.4",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.51.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}