-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 2.06 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
{
"name": "@cloudblueconnect/connect-ui-toolkit",
"version": "34.4.0",
"type": "module",
"exports": {
".": "./dist/index.js",
"./tools/*": "./dist/tools/*"
},
"scripts": {
"build": "npm run build:tools && npm run build:core",
"build:core": "vite build --config ./components/vite.config.js",
"build:tools": "vite build --config ./tools/vite.config.js",
"start": "NODE_ENV=development npm run build && vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write . --ignore-path .gitignore",
"format:check": "prettier --check . --ignore-path .gitignore",
"test": "vitest run",
"test:coverage": "vitest run --coverage.enabled",
"test:watch": "vitest watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@cloudblueconnect/material-svg": "^1.0.43",
"mitt": "^3.0.1",
"tinycolor2": "^1.6.0",
"vue": "^3.4.21"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.7.2",
"@storybook/addon-actions": "^8.0.9",
"@storybook/addon-designs": "^8.0.1",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/manager-api": "^8.0.9",
"@storybook/theming": "^8.0.9",
"@storybook/vue3": "^8.0.9",
"@storybook/vue3-vite": "^8.0.9",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.3.1",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/test-utils": "^2.4.4",
"ajv": "^8.12.0",
"chromatic": "^9.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vitest-globals": "^1.5.0",
"eslint-plugin-vue": "^9.22.0",
"jsdom": "^24.0.0",
"prettier": "3.2.5",
"storybook": "^8.0.9",
"stylus": "^0.63.0",
"validator": "^13.11.0",
"vite": "^5.1.6",
"vite-plugin-svgo": "^1.4.0",
"vitest": "^1.4.0",
"vue-eslint-parser": "^9.4.2"
}
}