-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
110 lines (110 loc) · 3.55 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
{
"name": "@hulkapps/polaris-vue",
"description": "Shopify's polaris component library for Vue.js",
"private": false,
"author": "HulkApps <uttam@hulkapps.com>",
"repository": "https://github.com/HulkApps/polaris-vue.git",
"bugs": {
"url": "https://github.com/HulkApps/polaris-vue/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"shopify",
"polaris",
"vue",
"components",
"component library"
],
"license": "MIT",
"version": "3.0.9",
"scripts": {
"prebuild": "rimraf ./dist",
"build:scss": "sass src/scss/main.scss | node ./build/banner.js > dist/polaris-vue.css && cleancss --inline local -o dist/polaris-vue.min.css dist/polaris-vue.css",
"build:scss:watch": "sass src/scss/buefy-build.scss --watch",
"build": "npm run build:js && npm run build:scss",
"build:js": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook"
},
"main": "dist/polaris-vue.min.js",
"dependencies": {
"@hulkapps/vue-plyr": "^7.0.5",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"@vue/babel-preset-jsx": "^1.1.1",
"apexcharts": "^3.26.3",
"change-case": "^4.1.1",
"core-js": "^3.3.2",
"dayjs": "^1.10.4",
"mitt": "^3.0.0",
"portal-vue": "^2.1.7",
"v-click-outside": "^3.0.1",
"vue": "^2.6.14",
"vue-apexcharts": "^1.6.1",
"vue-color": "^2.7.1",
"vue-multiselect": "^2.1.6",
"vue-quill-editor": "^3.0.6",
"vue-router": "^3.5.1",
"vue2-daterange-picker": "^0.6.5"
},
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@storybook/addon-actions": "6.5.0-alpha.5",
"@storybook/addon-docs": "^6.5.0-alpha.5",
"@storybook/addon-essentials": "6.5.0-alpha.5",
"@storybook/addon-links": "6.5.0-alpha.5",
"@storybook/addons": "6.5.0-alpha.5",
"@storybook/cli": "6.5.0-alpha.5",
"@storybook/theming": "6.5.0-alpha.5",
"@storybook/vue": "6.5.0-alpha.5",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-typescript": "^4.0.0",
"autoprefixer": "^9.7.8",
"babel-loader": "^8.2.2",
"clean-css": "^5.2.2",
"clean-css-cli": "4.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.3.0",
"eslint-webpack-plugin": "^3.1.1",
"minimist": "^1.2.5",
"node-sass": "^4.12.0",
"postcss": "^8.0.0",
"postcss-import": "12.0.1",
"postcss-inline-svg": "^4.1.0",
"postcss-loader": "^4.0.4",
"postcss-nested": "^4.2.1",
"postcss-simple-vars": "5.0.2",
"postcss-url": "^8.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.52.8",
"rollup-plugin-commonjs": "9.2.1",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.9",
"sass-loader": "^8.0.0",
"showdown": "^1.9.1",
"vue-loader": "^15.9.7",
"vue-template-compiler": "^2.6.14"
},
"engines": {
"node": ">=14"
}
}