-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.9 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
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
123
124
125
126
127
128
129
130
{
"name": "@einride/ui",
"version": "0.0.0-development",
"description": "Core components that adhere to Einride's design system",
"scripts": {
"build": "rollup --config",
"build-storybook": "storybook build",
"review": "concurrently --kill-others-on-fail 'yarn commitlint' 'yarn format-check' 'yarn lint' 'yarn test' 'yarn typecheck' 'yarn build'",
"storybook": "storybook dev -p 6006",
"test-storybook": "test-storybook",
"test-storybook-coverage": "test-storybook --coverage",
"commitlint": "commitlint --from origin/master --to HEAD",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint --ext ts,tsx .",
"test": "vitest run",
"test-watch": "vitest",
"typecheck": "tsc"
},
"dependencies": {
"@einride/hooks": "1.8.0",
"@emotion/is-prop-valid": "1.3.1",
"@mantine/hooks": "7.1.1",
"@radix-ui/react-alert-dialog": "1.1.2",
"@radix-ui/react-dialog": "1.1.2",
"@radix-ui/react-dropdown-menu": "2.1.2",
"@radix-ui/react-radio-group": "1.2.2",
"@radix-ui/react-slider": "1.2.1",
"@radix-ui/react-switch": "1.1.1",
"@radix-ui/react-tabs": "1.1.1",
"@radix-ui/react-tooltip": "1.1.3",
"lodash.merge": "4.6.2"
},
"devDependencies": {
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@einride/eslint-plugin": "7.9.0",
"@einride/prettier-config": "2.1.0",
"@einride/tsconfig": "2.1.0",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@faker-js/faker": "8.4.1",
"@rollup/plugin-image": "3.0.3",
"@rollup/plugin-typescript": "11.1.2",
"@storybook/addon-a11y": "8.0.6",
"@storybook/addon-actions": "8.0.6",
"@storybook/addon-coverage": "1.0.1",
"@storybook/addon-essentials": "8.0.6",
"@storybook/addon-interactions": "8.0.6",
"@storybook/addon-links": "8.0.6",
"@storybook/addon-styling": "1.3.7",
"@storybook/node-logger": "8.0.6",
"@storybook/react": "8.0.6",
"@storybook/react-vite": "8.0.6",
"@storybook/test": "8.0.6",
"@storybook/test-runner": "0.17.0",
"@storybook/theming": "8.0.6",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.2",
"@testing-library/user-event": "14.5.2",
"@types/lodash.merge": "4.6.9",
"@types/luxon": "3.4.2",
"@types/react": "18.2.74",
"@types/react-dom": "18.2.24",
"@vitejs/plugin-react": "4.2.1",
"chromatic": "11.3.0",
"concurrently": "8.2.2",
"eslint": "8.57.0",
"eslint-plugin-storybook": "0.8.0",
"framer-motion": "11.0.24",
"luxon": "3.4.4",
"prettier": "3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "4.22.4",
"semantic-release": "23.0.7",
"storybook": "8.0.6",
"tslib": "2.6.2",
"typescript": "5.4.4",
"vite": "5.2.14",
"vite-plugin-turbosnap": "1.0.3",
"vite-tsconfig-paths": "4.3.2",
"vitest": "1.4.0"
},
"peerDependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"framer-motion": ">=11.0.0",
"react": "^18.2.0"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"main": "./dist/main.cjs.js",
"module": "./dist/main.esm.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/main.esm.js",
"require": "./dist/main.cjs.js"
}
},
"keywords": [
"react",
"typescript",
"ui",
"components",
"library"
],
"homepage": "https://github.com/einride/ui",
"repository": {
"type": "git",
"url": "https://github.com/einride/ui.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/einride/ui/issues"
},
"license": "MIT",
"author": "Filip Tammergård <[email protected]> https://github.com/filiptammergard",
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=22"
},
"packageManager": "[email protected]"
}