-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "tmdb-js",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"add-changeset": "changeset add",
"prerelease": "pnpm run build",
"version-packages": "changeset version",
"release": "changeset publish",
"publish-packages": "turbo run build && changeset version && changeset publish",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@changesets/cli": "latest",
"eslint-config-custom": "workspace:*",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "latest",
"turbo": "latest"
},
"lint-staged": {
"*.{js,ts}": [
"pnpm run lint -- --fix",
"pnpm run format"
],
"*.{md}": [
"pnpm run format"
]
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}