-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 833 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
30
31
32
33
34
{
"name": "fizz",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"test:npm": "turbo run test:npm",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "turbo run build lint test:ci test:npm && changeset version && changeset publish"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/react-example": "*",
"@repo/typescript-config": "*",
"@tdreyno/fizz": "*",
"@tdreyno/fizz-react": "*",
"@tdreyno/fizz-svelte": "*",
"prettier": "^3.3.3",
"turbo": "^2.0.6"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.8.1",
"workspaces": [
"packages/*"
],
"dependencies": {
"@changesets/cli": "^2.27.10"
}
}