-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 829 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 829 Bytes
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
{
"name": "geese",
"packageManager": "yarn@3.2.3",
"workspaces": [
"packages/*"
],
"private": true,
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"prepare": "yarn install; yarn workspaces foreach run prepare",
"dev": "yarn env-cmd yarn workspaces foreach -pi run dev",
"build": "yarn env-cmd yarn workspaces foreach -pi run build",
"start": "yarn env-cmd yarn workspaces foreach -pi run start",
"postinstall": "husky install",
"test": "echo \"tests completed\""
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"commitlint-plugin-function-rules": "^1.7.1",
"env-cmd": "^10.1.0",
"husky": "^8.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.5.1"
}
}