-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.06 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
{
"name": "@equinor/eds-data-grid-react",
"version": "1.3.0",
"description": "A feature-rich data-grid written in React, implementing the Equinor Design System",
"license": "MIT",
"types": "dist/types/index.d.ts",
"main": "dist/eds-data-grid-react.cjs",
"module": "./dist/esm/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/eds-data-grid-react.cjs"
}
},
"files": [
"dist/*"
],
"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",
"storybook": "storybook dev -p 9000 --ci",
"build:storybook": "storybook build -o storybook-build",
"types": "tsc -p tsconfig.build.json"
},
"author": {
"name": "EDS Core Team",
"email": "fg_eds@equinor.com"
},
"peerDependencies": {
"@equinor/eds-core-react": ">=1 <3",
"react": "^18 || ^19",
"react-dom": "^18 || ^19",
"styled-components": "^6"
},
"dependencies": {
"@equinor/eds-icons": "workspace:^",
"@equinor/eds-tokens": "workspace:^",
"@equinor/eds-utils": "workspace:^",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.14.3"
},
"devDependencies": {
"@equinor/eds-core-react": "^2",
"@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",
"eslint-plugin-storybook": "10.4.6",
"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",
"ramda": "^0.32.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-hook-form": "^7.80.0",
"rollup": "^4.62.2",
"rollup-plugin-delete": "^3.0.2",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^10.4.6",
"styled-components": "6.4.2",
"ts-jest": "29.4.11",
"ts-node": "10.9.2",
"tsc-watch": "^7.2.0",
"typescript": "~5.9.3"
},
"homepage": "https://eds.equinor.com",
"repository": {
"type": "git",
"url": "https://github.com/equinor/design-system",
"directory": "packages/eds-data-grid-react"
},
"bugs": {
"url": "https://github.com/equinor/design-system/issues"
},
"keywords": [
"eds",
"design system",
"equinor",
"react",
"data grid"
]
}