23 lines
905 B
JSON
23 lines
905 B
JSON
{
|
|
"private": true,
|
|
"name": "squiggle",
|
|
"scripts": {
|
|
"build:lang": "cd packages/squiggle-lang && yarn && yarn build && yarn package",
|
|
"storybook:components": "cd packages/components && yarn && yarn storybook",
|
|
"build-storybook:components": "cd packages/components && yarn && yarn build-storybook",
|
|
"build:components": "cd packages/components && yarn && yarn package",
|
|
"build:playground": "cd packages/playground && yarn && yarn parcel-build",
|
|
"ci:lang": "yarn workspace @quri/squiggle-lang ci",
|
|
"ci:components": "yarn ci:lang && yarn workspace @quri/squiggle-components ci",
|
|
"ci:playground": "yarn ci:components && yarn workspace @quri/squiggle-playground ci",
|
|
"nodeclean": "rm -r node_modules && rm -r packages/*/node_modules"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"resolutions": {
|
|
"@types/react": "17.0.39"
|
|
},
|
|
"packageManager": "yarn@1.22.17"
|
|
}
|