-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 4.22 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
131
{
"name": "@phillips/seldon",
"version": "1.103.1",
"repository": {
"type": "git",
"url": "https://github.com/PhillipsAuctionHouse/seldon"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./dist/": {
"import": "./dist/"
}
},
"files": [
"dist/**"
],
"scripts": {
"start": "storybook dev -p 6006",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "npm run clean && tsc && vite build",
"build:storybook": "storybook build",
"preview": "npx http-server storybook-static",
"clean": "rimraf './dist'",
"clean:stories": "rimraf './storybook-static'",
"create-component": "node --no-warnings --loader ts-node/esm .template/scripts/createComponent.ts",
"format": "prettier . --write",
"lint": "tsc --noEmit && eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 && npm run lint:styles && npm run lint:md",
"lint:styles": "stylelint \"src/**/*.scss\" --fix",
"lint:md": "markdownlint \"src/**/*.{md,mdx}\" --fix",
"prepare": "husky install"
},
"dependencies": {
"@artsy/fresnel": "^7.1.4",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@types/dompurify": "^3.0.5",
"change-case": "^5.4.4",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"dompurify": "^3.1.6",
"embla-carousel-react": "^8.3.0",
"embla-carousel-wheel-gestures": "^8.0.1",
"flatpickr": "^4.6.13",
"html-react-parser": "^5.1.12",
"react-intersection-observer": "^9.13.1",
"react-modal": "^3.16.1",
"react-transition-group": "^4.4.5",
"react-zoom-pan-pinch": "^3.6.1",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@faker-js/faker": "^9.0.0",
"@figma/code-connect": "^0.2.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.0",
"@storybook/addon-essentials": "^8.2.7",
"@storybook/addon-interactions": "^8.1.4",
"@storybook/addon-links": "^8.1.4",
"@storybook/addon-mdx-gfm": "^8.2.4",
"@storybook/blocks": "^8.1.4",
"@storybook/react": "^8.1.4",
"@storybook/react-vite": "^8.1.4",
"@storybook/theming": "^8.2.4",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/color": "^3.0.6",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.0.11",
"@types/react-modal": "^3.16.3",
"@types/react-transition-group": "^4.4.11",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.6.0",
"color": "^4.2.3",
"eslint": "^8.57.0",
"eslint-plugin-local-rules": "^3.0.2",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.13",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.1.6",
"markdownlint-cli": "^0.41.0",
"prettier": "3.3.3",
"react": "^18.3.1",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.2.0",
"rimraf": "^5.0.8",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"sass": "^1.77.8",
"semantic-release": "^23.1.1",
"storybook": "^8.1.4",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.4.1",
"ts-node": "^10.9.2",
"type-fest": "^4.27.0",
"typescript": "^5.5.4",
"vite": "^5.4.6",
"vite-plugin-dts": "^4.2.4",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.2.0"
}
}