-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 934 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
36
{
"private": true,
"name": "bff",
"description": "Your friendly test runner/framework",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"lint": "eslint .",
"test.bff": "npm run --prefix packages/bff test.ci",
"test.webdriver": "npm run --prefix packages/bff-webdriver test",
"test.puppeteer": "npm run --prefix packages/bff-puppeteer test",
"test.playwright": "npm run --prefix packages/bff-playwright test",
"docs.dev": "vuepress dev docs",
"docs.build": "vuepress build docs"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "2.18.0",
"@ianwalter/eslint-config": "^7.0.1",
"@ianwalter/renovate-config": "^1.4.6",
"@ianwalter/vuepress-theme-brooks": "^1.2.0",
"vuepress": "^1.8.0"
},
"eslintConfig": {
"root": true,
"extends": [
"@ianwalter"
]
},
"renovate": {
"extends": [
"@ianwalter"
]
}
}