-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.75 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
{
"name": "@opetushallitus/oph-design-system",
"version": "0.1.8",
"description": "",
"type": "module",
"exports": {
".": "./dist/index.js",
"./theme": "./dist/theme/index.js",
"./next/theme": "./dist/next/theme/index.js"
},
"scripts": {
"test": "vitest",
"test:coverage": "vitest --coverage",
"start-built-storybook": "npx http-server ./storybook-static -p 6006 --silent",
"test-storybook": "npx playwright test",
"start-and-test-storybook": "start-server-and-test start-built-storybook 6006 test-storybook",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "tsup",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier . -c",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
"test-storybook-docker": "./scripts/run-playwright-tests-in-docker.sh",
"start-and-test-storybook-docker": "start-server-and-test start-built-storybook 6006 test-storybook-docker",
"pack": "mkdir -p pkg && npm pack --pack-destination=pkg",
"bump-version": "./scripts/bump-version.sh"
},
"keywords": [],
"author": "",
"license": "EUPL-1.2",
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@mui/icons-material": "^6.1.10",
"@mui/material": "^6.1.10",
"@playwright/test": "^1.49.0",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/nextjs": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/test": "^8.4.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@trivago/prettier-plugin-sort-imports": "^5.1.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"esbuild-plugin-preserve-directives": "^0.0.11",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-storybook": "^0.11.1",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"start-server-and-test": "^2.0.8",
"storybook": "^8.4.7",
"storybook-addon-pseudo-states": "^4.0.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vitest": "^2.1.8"
},
"peerDependencies": {
"@mui/material": "^6",
"next": "^14 || ^15",
"react": "^18 || ^19"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
},
"overrides": {
"esbuild": "0.24.0"
}
}