-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.71 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@equinor/eds-core-react",
"version": "2.6.1",
"description": "The React implementation of the Equinor Design System",
"sideEffects": [
"**/*.css"
],
"types": "dist/types/index.d.ts",
"main": "dist/eds-core-react.cjs",
"module": "dist/esm/index.js",
"license": "MIT",
"author": {
"name": "EDS Core Team",
"email": "fg_eds@equinor.com"
},
"homepage": "https://eds.equinor.com",
"repository": {
"type": "git",
"url": "https://github.com/equinor/design-system",
"directory": "packages/eds-core-react"
},
"bugs": {
"url": "https://github.com/equinor/design-system/issues"
},
"files": [
"dist/*",
"build/*"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/eds-core-react.cjs"
}
},
"scripts": {
"build": "rollup -c && tsc -p tsconfig.build.json",
"prepublishOnly": "pnpm run build",
"test": "tsc -p tsconfig.test.json && jest --ci",
"test:watch": "tsc-watch -p tsconfig.test.json --onFirstSuccess \"jest --watch\"",
"test:update-snapshots": "jest --updateSnapshot",
"test:visual": "playwright test",
"test:visual:ui": "playwright test --ui",
"test:visual:update": "playwright test --update-snapshots",
"test:visual:report": "playwright show-report",
"storybook": "storybook dev -p 9000 --ci",
"build:storybook": "storybook build -o storybook-build",
"types": "tsc -p tsconfig.build.json"
},
"keywords": [
"eds",
"design system",
"equinor",
"react"
],
"devDependencies": {
"@equinor/eds-mobile-components": "^0.2.0",
"@figma/code-connect": "^1.4.8",
"@playwright/test": "^1.61.1",
"@rollup/plugin-babel": "^7.1.0",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@storybook/addon-a11y": "^10.4.6",
"@storybook/addon-docs": "^10.4.6",
"@storybook/addon-links": "^10.4.6",
"@storybook/react-vite": "^10.4.6",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "^30.0.0",
"@types/mdx": "^2.0.14",
"@types/node": "^25.5.2",
"@types/ramda": "^0.32.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"babel-plugin-styled-components": "^2.3.0",
"browserslist": "^4.28.4",
"eslint-plugin-storybook": "10.4.6",
"lightningcss": "^1.32.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jest-styled-components": "^7.4.0",
"js-file-download": "^0.4.12",
"postcss": "^8.5.16",
"postcss-import": "^16.1.1",
"ramda": "^0.32.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-hook-form": "^7.80.0",
"react-router-dom": "^7.18.0",
"remark-gfm": "^4.0.1",
"rollup": "^4.62.2",
"rollup-plugin-delete": "^3.0.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-preserve-directives": "^1.1.3",
"storybook": "^10.4.6",
"styled-components": "6.4.2",
"tsc-watch": "^7.2.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19",
"styled-components": "^6"
},
"dependencies": {
"@babel/runtime": "^7.29.2",
"@equinor/eds-icons": "workspace:^",
"@equinor/eds-tokens": "workspace:^",
"@equinor/eds-utils": "workspace:^",
"@floating-ui/react": "^0.27.19",
"@internationalized/date": "^3.12.2",
"@react-aria/utils": "^3.34.1",
"@react-stately/calendar": "^3.10.1",
"@react-stately/datepicker": "^3.17.1",
"@react-types/shared": "^3.36.0",
"@tanstack/react-virtual": "3.14.5",
"downshift": "9.3.6",
"react-aria": "^3.50.0"
}
}