forked from toss/suspensive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 857 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
{
"name": "suspensive",
"version": "0.0.0",
"private": true,
"workspaces": [
"configs/*",
"packages/*",
"websites/*"
],
"scripts": {
"build": "turbo run build",
"commit": "cz",
"dev": "turbo run dev --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"postinstall": "husky install",
"lint": "turbo run lint",
"publish": "turbo run publish",
"type:check": "turbo run type:check --parallel"
},
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-custom": "*",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "latest",
"turbo": "latest"
},
"packageManager": "yarn@3.3.1",
"engines": {
"node": ">=14.0.0"
}
}