-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.11 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
{
"name": "dhc-components",
"version": "0.0.0",
"private": true,
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/dhc-components.es.js",
"require": "./dist/dhc-components.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"build:watch": "vite build --watch",
"preview": "vite preview",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"test:unit": "cypress run --component",
"test:unit:dev": "cypress open --component",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.cypress-ct.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@milkdown/core": "^7.5.0",
"@milkdown/plugin-clipboard": "^7.5.0",
"@milkdown/plugin-diagram": "^7.5.0",
"@milkdown/plugin-emoji": "^7.5.0",
"@milkdown/plugin-history": "^7.5.0",
"@milkdown/plugin-indent": "^7.5.0",
"@milkdown/plugin-listener": "^7.5.0",
"@milkdown/plugin-math": "^7.5.0",
"@milkdown/plugin-prism": "^7.5.0",
"@milkdown/plugin-tooltip": "^7.5.0",
"@milkdown/plugin-upload": "^7.5.0",
"@milkdown/preset-commonmark": "^7.5.0",
"@milkdown/preset-gfm": "^7.5.0",
"@milkdown/prose": "^7.5.0",
"@milkdown/theme-nord": "^7.5.0",
"@milkdown/transformer": "^7.5.0",
"@milkdown/vue": "^7.5.0",
"@vueform/multiselect": "^2.6.11",
"vee-validate": "^4.13.2",
"vue": "^3.3.4",
"vue-i18n": "^9.13.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@popperjs/core": "^2.11.8",
"@rushstack/eslint-patch": "^1.3.3",
"@storybook/addon-essentials": "^8.4.5",
"@storybook/addon-interactions": "^8.4.5",
"@storybook/addon-links": "^8.4.5",
"@storybook/blocks": "^8.4.5",
"@storybook/test": "^8.4.5",
"@storybook/vue3": "^8.4.5",
"@storybook/vue3-vite": "^8.4.5",
"@tsconfig/node18": "^18.2.2",
"@types/d3-dsv": "^3.0.7",
"@types/node": "^18.18.5",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.4.0",
"bootstrap": "^5.3.3",
"cypress": "^13.3.1",
"eslint": "^8.49.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-vue": "^9.17.0",
"npm-run-all2": "^6.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.69.5",
"start-server-and-test": "^2.0.1",
"storybook": "^8.4.5",
"storybook-addon-vue-slots": "^0.9.30-next.2",
"typescript": "~5.2.0",
"vite": "^4.4.11",
"vue-tsc": "^1.8.19"
}
}