This commit adds new build and development scripts to package.json. It features 'react:build', 'react:dev' and 'cli:build' scripts. The 'yarn.lock' file has been significantly updated to include new packages and dependencies for "@aws-sdk/client-cloudfront", "@aws-sdk/client-s3" and few others. This ensures proper and up-to-date packages management for an efficient development environment.
20 lines
520 B
JSON
20 lines
520 B
JSON
{
|
|
"name": "ui",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/p-sw/ui",
|
|
"author": "p-sw <shinwoo.park@psw.kr>",
|
|
"license": "MIT",
|
|
"workspaces": [
|
|
"packages/*",
|
|
"components"
|
|
],
|
|
"scripts": {
|
|
"react:build": "yarn workspace react build",
|
|
"react:dev": "yarn workspace react dev",
|
|
"cli:build": "yarn workspace @psw-ui/cli build"
|
|
},
|
|
"private": true,
|
|
"packageManager": "yarn@4.2.2+sha256.1aa43a5304405be7a7cb9cb5de7b97de9c4e8ddd3273e4dad00d6ae3eb39f0ef"
|
|
}
|