-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.19 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
{
"name": "@altinn/altinn-components",
"version": "0.15.3",
"main": "dist/index.js",
"files": [
"dist/",
"!dist/stories/",
"!dist/components/*/*.stories.js"
],
"types": "dist/types/lib/index.d.ts",
"type": "module",
"description": "Reusable react components",
"sideEffects": [
"*.css"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "storybook dev -p 6006",
"typecheck": "tsc --noEmit",
"build": "tsc && vite build",
"format": "lint-staged",
"dev": "vite",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"install:browsers": "pnpm exec playwright install"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@navikt/aksel-icons": "^7.9.2",
"classnames": "^2.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@chromatic-com/storybook": "^3.2.4",
"@storybook/addon-mdx-gfm": "^8.5.0",
"@storybook/addon-a11y": "^8.5.0",
"@storybook/addon-essentials": "^8.5.0",
"@storybook/addon-interactions": "^8.5.0",
"@storybook/addon-links": "^8.5.0",
"@storybook/addon-themes": "^8.5.0",
"@storybook/blocks": "^8.5.0",
"@storybook/react": "^8.5.0",
"@storybook/react-vite": "^8.5.0",
"@storybook/test": "^8.5.0",
"@storybook/test-runner": "^0.21.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react-swc": "^3.7.2",
"axe-core": "^4.10.2",
"glob": "^11.0.1",
"lint-staged": "^15.4.1",
"playwright": "^1.49.1",
"rollup-preserve-directives": "^1.1.3",
"storybook": "^8.5.0",
"storybook-addon-tag-badges": "^1.4.0",
"storybook-addon-theme-provider": "^0.2.8",
"typescript": "^5.7.3",
"vite": "^5.4.14",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-lib-inject-css": "^2.2.1",
"vite-plugin-static-copy": "^2.2.0"
},
"peerDependencies": {
"react": ">=18.3.1",
"react-dom": ">=18.3.1"
},
"lint-staged": {
"**/*.*": "biome check --staged --no-errors-on-unmatched --write"
},
"packageManager": "[email protected]"
}