-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.77 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
{
"name": "quichtify",
"version": "1.15.34",
"main": "./dist/quichtify.umd.js",
"module": "./dist/quichtify.es.js",
"browser": "./dist/quichtify.cjs.js",
"files": [
"dist/*.css",
"dist/*.js",
"README.md"
],
"exports": {
".": {
"import": "./dist/quichtify.es.js",
"require": "./dist/quichtify.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom",
"test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"lib:build": "vite build --config vite-lib.config.js",
"lib:publish": "npm run lib:build && echo '\n\nStart npm publishing\n' && npm publish --access public",
"lib:publish:patch": "npm version patch && npm run lib:publish",
"lib:publish:minor": "npm version minor && npm run lib:publish",
"lib:publish:major": "npm version major && npm run lib:publish",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook"
},
"dependencies": {
"vue": "^3.2.33",
"core-js": "^3.8.3",
"node-sass-magic-importer": "^5.3.2",
"style-inject": "^0.3.0",
"vue-easy-dnd": "^1.22.0",
"echarts": "^5.3.2",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@mdx-js/react": "^2.1.1",
"@rushstack/eslint-patch": "^1.1.0",
"@storybook/addon-actions": "^6.5.6",
"@storybook/addon-essentials": "^6.5.6",
"@storybook/addon-interactions": "^6.5.6",
"@storybook/addon-links": "^6.5.6",
"@storybook/builder-vite": "^0.1.35",
"@storybook/testing-library": "^0.0.11",
"@storybook/vue3": "^6.5.6",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.20",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"chromatic": "^6.5.5",
"cypress": "^9.5.4",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.5.12",
"eslint-plugin-vue": "^9.1.0",
"html-webpack-plugin": "^5.5.0",
"jsdom": "^19.0.0",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"sass": "^1.52.1",
"start-server-and-test": "^1.14.0",
"storybook-addon-sass-postcss": "^0.1.3",
"tailwindcss": "^3.0.24",
"vite": "^2.9.5",
"vite-plugin-eslint": "^1.6.1",
"vitest": "^0.9.3",
"vue-loader": "^16.8.3"
}
}