-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 KB
/
package.json
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
34
35
36
37
{
"$schema": "https://json.schemastore.org/package.json",
"name": "personal-gallery",
"version": "1.3.1",
"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",
"start": "yarn workspace server start",
"test": "yarn workspace server test",
"lint": "yarn workspace server lint && yarn workspace web lint"
},
"author": {
"name": "Maksim Karasev"
},
"license": "MIT",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"packages/*"
]
},
"installConfig": {
"hoistingLimits": "dependencies"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"npm-run-all": "^4.1.5"
},
"packageManager": "[email protected]"
}