forked from clauderic/dnd-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 844 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 844 Bytes
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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --concurrency 20",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"version-packages:beta": "changeset version --snapshot beta",
"release:beta": "changeset publish --snapshot --tag beta"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.2",
"prettier": "^3.1.1",
"turbo": "^2.5.2"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"apps/*"
],
"name": "dnd-kit-experimental"
}