forked from SpareBank1/designsystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.08 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@sb1/ffe",
"version": "1.0.0",
"description": "Felles Front End",
"author": "SpareBank 1",
"license": "SEE LICENSE IN README.md",
"private": true,
"browserslist": [
"last 3 versions",
"not ie >= 0"
],
"scripts": {
"clean": "run-s clean:lib clean:lerna:clean clean:lerna",
"clean:lib": "rimraf packages/*/lib packages/*/es packages/*/types",
"clean:lerna": "lerna clean --yes",
"clean:lerna:clean": "lerna run clean",
"build": "lerna run build --stream",
"watch": "lerna watch -- lerna run build:es --scope=\\$LERNA_PACKAGE_NAME --ignore=@sb1/ffe-component-index",
"ghpages": "lerna run ghpages",
"lint": "lerna run lint --stream",
"lint:fix": "lerna run lint:fix --stream",
"start": "run-p watch start:component-overview watch:component-overview",
"watch:component-overview": "lerna run watch --scope='@sb1/ffe-component-index'",
"start:component-overview": "lerna run start --scope='@sb1/ffe-component-index'",
"test": "./buildtool/bin/cli.js jest",
"test:watch": "./buildtool/bin/cli.js jest --watch",
"test:playwright": "playwright test --config ./test/playwright.config.ts",
"test:playwright-head": "playwright test --config ./test/playwright.config.ts --headed",
"lerna": "lerna",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"{packages,buildtool,component-overview,linting,test,.storybook}/**/*.{js,jsx,ts,tsx,json,css,less,md}": [
"prettier --write"
]
},
"workspaces": [
".storybook/*",
"packages/*",
"linting/*",
"buildtool",
"component-overview"
],
"devDependencies": {
"@axe-core/playwright": "^4.9.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@playwright/test": "^1.43.1",
"@storybook/addon-essentials": "^8.2.7",
"@storybook/addon-interactions": "^8.2.7",
"@storybook/addon-links": "^8.2.7",
"@storybook/addon-storysource": "^8.2.9",
"@storybook/blocks": "^8.2.7",
"@storybook/manager-api": "^8.2.9",
"@storybook/react": "^8.2.7",
"@storybook/react-vite": "^8.2.7",
"@storybook/test": "^8.2.7",
"@storybook/theming": "^8.2.9",
"@testing-library/dom": "^10.1.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"case": "^1.5.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"lerna": "^8.1.3",
"lint-staged": "^15.2.2",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"postcss-less": "^6.0.0",
"prettier": "^3.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^6.0.1",
"storybook": "^8.2.7",
"typescript": "^5.4.3"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}