-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 986 Bytes
/
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
{
"name": "azure-static-web-app-example",
"version": "0.1.0",
"private": true,
"workspaces": [
"api",
"blueprints",
"ci",
"e2e",
"exec",
"infra",
"lighthouse",
"messages",
"web"
],
"engines": {
"node": "18.12.0"
},
"packageManager": "yarn@3.6.0",
"scripts": {
"dev:api": "yarn workspace api dev",
"dev:web": "yarn workspace web dev",
"dev": "swa start http://localhost:3000 --api-devserver-url http://localhost:7071 -V silly",
"build": "concurrently \"yarn workspace web build\" \"yarn workspace api build\"",
"start": "concurrently \"yarn workspace web start\" \"yarn workspace api start\"",
"lint": "concurrently \"yarn workspace web lint\" \"yarn workspace api lint\"",
"clean:deps": "rimraf **/node_modules ./node_modules/",
"clear": "yarn cache clean --force"
},
"devDependencies": {
"@azure/static-web-apps-cli": "^1.1.3",
"concurrently": "^8.2.0",
"rimraf": "^5.0.1"
}
}