forked from timlrx/pliny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "husky install",
"build": "turbo run build --filter=!starter-blog",
"dev": "turbo run dev --parallel --no-cache --filter=!starter-blog",
"build:starter": "turbo run build",
"dev:starter": "turbo run dev --parallel --no-cache",
"serve": "turbo run serve",
"lint": "turbo run lint",
"test": "vitest run",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "yarn run build && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/timlrx/pliny"
},
"lint-staged": {
"./packages/*/src/**/*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"./packages/*/src/**/*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.1.0",
"@types/react": "18.2.15",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^3.0.0",
"turbo": "1.10.7",
"vitest": "0.33.0"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"packageManager": "[email protected]"
}