-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 809 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 809 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
{
"name": "react-three-jolt-root",
"private": true,
"version": "0.0.0",
"repository": "https://github.com/isaac-mason/react-three-jolt.git",
"author": "Dennis Smolek",
"contributors": [
"Dennis Smolek",
"Isaac Mason <isaac@isaacmason.com>"
],
"license": "MIT",
"packageManager": "yarn@4.1.1",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"test": "yarn workspaces foreach -A -t run test",
"build": "yarn workspaces foreach -A -t run build",
"change": "yarn changeset",
"publish": "yarn build && yarn test && changeset publish",
"version": "yarn changeset version && yarn install --mode update-lockfile"
},
"devDependencies": {
"@changesets/cli": "^2.26.2"
}
}