-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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
53
54
55
{
"name": "fusillo",
"description": "//",
"version": "0.0.0",
"license": "//",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:web": "turbo run build --filter=@fusillo/web",
"build:design": "turbo run build --filter=@fusillo/design",
"build:storybook": "turbo run build --filter=@fusillo/storybook",
"build:docs": "turbo run build --filter=@fusillo/docs",
"deploy": "turbo run deploy",
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=@fusillo/web",
"dev:design": "turbo run dev --filter=@fusillo/design",
"dev:storybook": "turbo run dev --filter=@fusillo/storybook",
"dev:docs": "turbo run dev --filter=@fusillo/docs",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"start": "turbo run start",
"type-check": "turbo run type-check"
},
"devDependencies": {
"prettier": "^2.8.6",
"typescript": "^4.9.4"
},
"dependencies": {
"eslint": "^8.34.0",
"turbo": "^2.0.1"
},
"resolutions": {
"@types/react": "18.0.26",
"@types/react-dom": "^18.0.9",
"jackspeak": "2.1.1"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=20.0.0"
},
"lint-staged": {
"(apps|packages)/**/*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}