personal-gallery-node/package.json

36 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2021-03-23 14:12:51 +00:00
{
"$schema": "https://json.schemastore.org/package.json",
"name": "personal-gallery",
2023-05-19 14:34:09 +00:00
"version": "1.2.1",
2021-03-23 14:12:51 +00:00
"description": "",
"scripts": {
"server-dev": "yarn workspace server dev",
"web-dev": "yarn workspace web start",
"start-dev": "run-p server-dev web-dev",
"web-build": "yarn workspace web build",
"copy": "yarn copyfiles -u 3 \"packages/web/build/*\" \"packages/web/build/**/*\" packages/server/public",
"build": "yarn web-build && yarn workspace server build && yarn copy",
"build-dev": "NODE_ENV=development yarn web-build && yarn workspace server build && yarn copy",
2021-03-23 15:01:48 +00:00
"start": "yarn workspace server start",
"test": "yarn workspace server test"
2021-03-23 14:12:51 +00:00
},
"author": {
"name": "Maksim Karasev"
},
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"installConfig": {
"hoistingLimits": "dependencies"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"npm-run-all": "^4.1.5"
2022-12-24 00:32:37 +00:00
},
"packageManager": "yarn@3.3.1"
2021-03-23 14:12:51 +00:00
}