-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 989 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 989 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "npm install",
"build": "lerna run build",
"start:dev": "lerna run start:dev --stream",
"start:local": "lerna run start:local --stream",
"test": "lerna run test --stream",
"e2e": "lerna run e2e --stream --",
"e2e:a11y": "lerna run e2e --scope @polyratings/e2e --stream -- --grep @a11y",
"e2e:beta": "lerna run e2e:beta --stream --",
"e2e:dev": "lerna run e2e:dev --scope @polyratings/e2e --stream --",
"e2e:ui": "lerna run e2e:ui --stream --",
"e2e:headed": "lerna run e2e:headed --stream --",
"e2e:install": "lerna run e2e:install --stream --",
"lint": "lerna run lint --stream",
"fix": "lerna run fix --stream",
"deploy:prod": "lerna run deploy:prod --stream",
"deploy:beta": "lerna run deploy:beta --stream",
"deploy:dev": "lerna run deploy:dev --stream"
},
"devDependencies": {
"lerna": "^9.0.7"
}
}