-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.54 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
50
51
52
{
"private": true,
"license": "MIT",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"check": "biome check .",
"coverage": "turbo run coverage",
"cs": "changeset",
"depcheck": "turbo run depcheck",
"ea": "pnpm --filter=./examples/astro",
"el": "pnpm --filter=./examples/library",
"format": "biome format .",
"gs": "pnpm --filter=global-store",
"lint": "run-p lint:*",
"lint:biome": "biome lint .",
"lint:eslint": "cross-env TIMING=1 eslint --ext=yaml,yml .",
"nuke": "run-s nuke:repos nuke:root",
"nuke:repos": "turbo run nuke",
"nuke:root": "rimraf node_modules",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"prepare": "husky install",
"release": "changeset publish",
"size": "turbo run size",
"ss": "pnpm --filter=stable-store",
"test": "turbo run test",
"verify": "turbo run build lint coverage depcheck size",
"version": "changeset version"
},
"devDependencies": {
"@biomejs/biome": "^1.7.2",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@repobuddy/biome": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-harmony": "^7.1.2",
"eslint-plugin-yml": "^1.5.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"turbo": "^1.13.3",
"typescript": "^5.4.5"
},
"packageManager": "pnpm@9.0.6"
}