-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
36 lines (36 loc) · 1.15 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
{
"name": "mantine-react-table-turbo",
"author": "Kevin Vandy",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build --parallel",
"dev": "turbo run dev --parallel",
"docs:build": "turbo run lib:build && turbo run docs:build --no-cache --force",
"docs:build-local": "turbo run docs:build --no-cache --force",
"docs:dev": "turbo run docs:dev",
"docs:sitemap": "turbo run docs:sitemap",
"docs:start": "turbo run docs:start",
"lib:build": "cp README.md packages/mantine-react-table/README.md && turbo run lib:build",
"lib:build-locales": "turbo run lib:build-locales",
"lib:build-lib": "turbo run lib:build-lib",
"lib:dev": "turbo run lib:dev",
"format": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"lint": "turbo run lint",
"start": "turbo run start --parallel",
"storybook": "turbo run storybook",
"storybook:build": "turbo run storybook:build",
"storybook:dev": "turbo run storybook"
},
"devDependencies": {
"prettier": "^3.3.3",
"turbo": "^2.1.3"
},
"engines": {
"node": ">=16.0.0"
}
}