-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.57 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.57 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
{
"name": "@iqss/dataverse-design-system",
"version": "1.1.0",
"description": "Dataverse Design System Component Library",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/IQSS/dataverse-frontend.git",
"directory": "packages/design-system"
},
"bugs": {
"url": "https://github.com/IQSS/dataverse-frontend/issues"
},
"homepage": "https://github.com/IQSS/dataverse-frontend#readme",
"keywords": [
"dataverse",
"design-system",
"react",
"component"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6007",
"build-storybook": "storybook build",
"test:storybook": "test-storybook --url http://127.0.0.1:6007",
"cy:open-unit": "cypress open --component --browser chrome",
"test:unit": "cypress run --component",
"test:coverage": "nyc check-coverage"
},
"dependencies": {
"@dnd-kit/core": "6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "8.0.0",
"@dnd-kit/utilities": "3.2.2",
"@tiptap/extension-blockquote": "2.9.0",
"@tiptap/extension-bullet-list": "2.9.0",
"@tiptap/extension-code-block": "2.9.0",
"@tiptap/extension-heading": "2.9.0",
"@tiptap/extension-link": "2.9.0",
"@tiptap/extension-list-item": "2.9.0",
"@tiptap/extension-ordered-list": "2.9.0",
"@tiptap/extension-placeholder": "2.9.0",
"@tiptap/extension-underline": "2.9.0",
"@tiptap/pm": "2.9.0",
"@tiptap/react": "2.9.0",
"@tiptap/starter-kit": "2.9.0",
"@types/react": "18.0.27",
"bootstrap": "5.2.3",
"react-bootstrap": "2.7.2",
"react-bootstrap-icons": "1.11.4",
"sass": "1.58.1",
"typescript": "4.9.5",
"vite-plugin-istanbul": "4.0.1"
},
"devDependencies": {
"@storybook/react": "7.0.2",
"@storybook/test-runner": "0.10.0",
"@testing-library/cypress": "9.0.0",
"@vitejs/plugin-react": "3.1.0",
"axe-playwright": "1.2.3",
"chromatic": "6.17.4",
"cypress": "12.5.1",
"react": "18.2.0",
"vite": "4.1.5",
"vite-plugin-dts": "2.3.0",
"vite-plugin-libcss": "1.0.6"
},
"files": [
"dist",
"README.md"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"publishConfig": {
"access": "public"
},
"gitHead": "821b051d0591059bf81e68ea2ca429a4eed1515a"
}