forked from toss/suspensive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "suspensive",
"private": true,
"keywords": [
"suspensive",
"react",
"react-query"
],
"homepage": "https://docs.suspensive.org",
"bugs": "https://github.com/suspensive/react/issues",
"repository": {
"type": "git",
"url": "https://github.com/suspensive/react.git"
},
"license": "MIT",
"packageManager": "pnpm@7.5.2",
"workspaces": [
"configs/*",
"packages/*",
"websites/*"
],
"scripts": {
"build": "turbo run build",
"changeset": "changeset && changeset version",
"commit": "cz",
"dev": "turbo run dev --parallel",
"dev:ko": "turbo run dev:ko --scope='@suspensive/docs'",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"lint:pack": "packlint sort -R",
"npm:publish": "turbo run npm:publish",
"postinstall": "husky install",
"test": "turbo run test",
"type:check": "turbo run type:check --parallel"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"packlint": "^0.2.4",
"prettier": "^2.8.2",
"turbo": "latest",
"typescript": "^4.9.4"
}
}