forked from tch-dev/bas-javascript-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 874 Bytes
/
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
{
"name": "jfin-staking-monorepo",
"author": "J Ventures Co., Ltd.",
"version": "1.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"description": "Staking on JFIN Chain allows everyone to earn rewards.",
"license": "MIT",
"private": true,
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"lint": "turbo run lint",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"clean": "rimraf packages/*/{tsconfig.tsbuildinfo,lib,dist}"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@semantic-release/changelog": "6.0.0",
"husky": "^8.0.0",
"prettier": "latest",
"semantic-release": "^21.0.2",
"turbo": "1.6.1",
"typescript": "^5.0.4"
},
"release": {
"branches": [
"main"
]
}
}