-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.41 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.41 KB
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
{
"name": "eslint",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/**"
],
"scripts": {
"prepare": "husky install || echo \"skip husky\"",
"build": "turbo run build",
"types": "turbo run types",
"test": "turbo run test lint",
"test:strict": "turbo run test lint:strict",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"lint:strict": "turbo run lint:strict",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release:version": "changeset version",
"release:build": "turbo run build types",
"release:publish": "changeset publish",
"release:github-publish": "YARN_REGISTRY=https://npm.pkg.github.com yarn release:publish",
"release:push": "git push --follow-tags",
"release:status": "changeset status",
"release": "yarn release:build && yarn release:version && yarn release:publish && yarn release:github-publish && yarn release:push"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@tsd/typescript": "^5.4.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tsc-alias": "^1.8.8",
"tsup": "^8.0.2",
"turbo": "^1.12.5",
"typescript": "^5.4.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": "eslint"
}
}