forked from generoi/bedrock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 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
{
"name": "bedrock",
"private": true,
"type": "module",
"workspaces": [
"web/app/themes/gds"
],
"scripts": {
"build": "npm run build -ws",
"build:production": "npm run build:production -ws",
"start": "npm run start -ws",
"test": "npm run test -ws",
"lint": "npm run lint -ws",
"lint:js": "npm run lint:js -ws",
"lint:css": "npm run lint:css -ws",
"lint:prettier": "npm run lint:prettier -ws",
"lint:fix": "npm run lint:fix -ws",
"lint:fix:prettier": "npm run lint:fix:prettier -ws",
"lint:fix:js": "npm run lint:fix:js -ws",
"lint:fix:css": "npm run lint:fix:css -ws",
"ci:scripts": "npm run ci:scripts -ws --silent",
"ci:styles": "npm run ci:styles -ws --silent",
"translate": "npm run translate -ws",
"translate:pot": "npm run translate:pot -ws",
"translate:js": "npm run translate:js -ws",
"e2e:install": "npm install --workspaces=false && npx playwright install --with-deps chromium",
"e2e:test": "npx playwright test --config=./test/e2e/playwright.config.js"
},
"devDependencies": {
"@playwright/test": "^1.45.3"
}
}