-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
29 lines (29 loc) · 883 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
{
"version": "0.13.4",
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"lint": "turbo run --force lint",
"typecheck": "turbo run --force typecheck",
"format:check": "turbo run --force format:check",
"unit": "turbo run --force unit",
"test": "turbo run --force lint typecheck format:check unit",
"clean": "rm -rf node_modules/.cache && yarn workspaces run clean",
"build": "turbo run build",
"version:all": "turbo run version --force -- --new-version $npm_package_version --no-git-tag-version",
"postversion": "yarn version:all && git commit -am v$npm_package_version && git tag v$npm_package_version"
},
"dependencies": {},
"devDependencies": {
"turbo": "^1.3.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"license": "ISC",
"private": true
}