-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.97 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "root",
"description": "Root workspace for userback.io npm packages",
"version": "0.3.7",
"license": "MIT",
"private": true,
"workspaces": [
"widget-*",
"examples/*",
"e2e"
],
"scripts": {
"build": "yarn workspaces foreach --no-private run build",
"build:widget": "yarn workspace @userback/widget build",
"build:react": "yarn workspace @userback/react build",
"build:vue": "yarn workspace @userback/vue build",
"clean": "git clean -fx . -e node_modules -e .env -e .yarn -e .husky",
"docs": "yarn typedoc --entryPointStrategy packages widget* --gitRevision master",
"lint": "yarn eslint . --ext js,ts,jsx,tsx",
"publish": "yarn workspaces foreach --no-private npm publish --access public",
"start:widget": "yarn workspace example-js start",
"start:react": "yarn workspace example-react start",
"start:vue": "yarn workspace example-vue start",
"test": "yarn workspaces foreach -p --no-private run test",
"test:examples": "yarn workspaces foreach --include \"*example*\" -p run build --minify false",
"test:e2e": "yarn workspace e2e run test",
"test:docker": "docker compose up -d && docker compose build playwright && docker compose run --rm playwright",
"test:docker:dev": "docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d && docker compose build playwright && docker compose -f docker-compose.yml -f docker-compose.dev.yml run --rm playwright",
"postinstall": "husky install",
"version:all": "yarn workspaces foreach version"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"typedoc": "^0.23.28",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]"
}