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
33 lines (33 loc) · 909 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 909 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
30
31
32
33
{
"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.9.0"
},
"packageManager": "bun@1.3.11",
"workspaces": [
"packages/*",
"apps/*"
],
"name": "dnd-kit-experimental",
"overrides": {
"acorn": "8.14.0",
"ajv": "8.17.1"
}
}