-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.58 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.58 KB
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
{
"name": "frontend-packages",
"repository": "https://github.com/blb-ventures/frontend-packages",
"author": "Eduardo Ciciliato <eduardo.ciciliato@gmail.com>",
"license": "MIT",
"private": true,
"devDependencies": {
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/react": "^6.3.8",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsdoc": "36.1.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prefer-arrow-functions": "3.0.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.25.1",
"eslint-plugin-react-hooks": "4.2.0",
"prettier": "^2.4.1"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build-packages": "yarn --cwd packages/library build && yarn --cwd packages/react-components build",
"lint-packages": "yarn --cwd packages/library lint && yarn --cwd packages/react-components lint",
"test-packages": "yarn --cwd packages/library test && yarn --cwd packages/react-components test",
"publish-packages": "yarn --cwd packages/library publish --access public && yarn --cwd packages/react-components publish --access public"
}
}