-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (27 loc) · 747 Bytes
/
package.json
File metadata and controls
30 lines (27 loc) · 747 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
{
"name": "shopping-list",
"private": true,
"type": "module",
"workspaces": [
"apps/web",
"apps/api"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "npm-run-all -p dev:web dev:api",
"dev:web": "npm --workspace apps/web run dev",
"dev:api": "npm --workspace apps/api run dev",
"build": "npm-run-all build:web build:api",
"build:web": "npm --workspace apps/web run build",
"build:api": "npm --workspace apps/api run build",
"start": "npm --workspace apps/api run start",
"lint": "npm-run-all lint:web lint:api",
"lint:web": "npm --workspace apps/web run lint",
"lint:api": "npm --workspace apps/api run lint"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}