-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 928 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 928 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
31
32
33
34
35
36
37
{
"name": "dodo-contract",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "lerna run build",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky",
"test": "lerna run test",
"git:commit": "tsx scripts/git",
"commit": "cz",
"commitlint": "commitlint --edit"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.6",
"lerna": "^8.1.8",
"prettier": "^3.3.3",
"semantic-release": "^24.1.3",
"semantic-release-monorepo": "^8.0.2",
"tsx": "^4.19.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}