-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·34 lines (34 loc) · 1.04 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
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"lint:packages": "npm-run-all --parallel --print-label --continue-on-error lint:packages:*",
"lint:packages:semver": "syncpack lint-semver-ranges",
"lint:packages:mismatches": "syncpack list-mismatches",
"lint:format": "prettier --check \"**/*.{js,ts,tsx,md,mdx,json}\"",
"clean": "turbo run clean && rm -rf node_modules",
"add-changeset": "changeset add",
"version-packages": "changeset version",
"prepare": "husky install",
"prerelease": "yarn run build",
"release": "changeset publish",
"test": "turbo run test",
"types:check": "turbo run types:check"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"config-prettier": "*",
"husky": "^8.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"syncpack": "^9.7.4",
"turbo": "^1.8.3"
}
}