-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 875 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 875 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
28
29
30
31
{
"name": "layuplist",
"version": "1.0.0",
"repository": "https://github.com/layuplist/ll2",
"author": "dplanner-dev",
"license": "MIT",
"workspaces": [
"schema",
"backend",
"client",
"infra",
"scripts"
],
"private": true,
"scripts": {
"lint": "eslint .",
"build": "yarn workspace @layuplist/schema build && (yarn workspace @layuplist/client build & yarn workspace @layuplist/backend build) && yarn workspace @layuplist/infra build",
"synth": "yarn build && yarn workspace @layuplist/infra synth",
"deploy": "yarn build && yarn workspace @layuplist/infra deploy --all"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"typescript": "^4.9.5"
},
"engines": {
"node": "18"
},
"packageManager": "yarn@3.4.1"
}