-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.31 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.31 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "comento-ui",
"version": "1.10.1",
"license": "MIT",
"main": "dist/comento-ui.common.js",
"repository": {
"type": "git",
"url": "https://github.com/comento/comento-ui.git"
},
"homepage": "https://github.com/comento/comento-ui",
"scripts": {
"serve": "vue-cli-service serve",
"bundle": "vue-cli-service build --target lib --name comento-ui src/main.js",
"generate-index": "node scripts/generate-component-index.js",
"copy": "yarn copy-color && yarn copy-fonts && yarn copy-mixins",
"copy-color": "cp -R src/assets/style/base/color.scss dist && cp -R src/utils/constants/color.js dist/color.js",
"copy-fonts": "cp -R src/assets/style/base/fonts.scss dist",
"copy-mixins": "cp -R src/assets/style/base/mixins.scss dist && cp -R src/assets/style/base/flexbox.scss dist && cp -R src/assets/style/base/functions.scss dist",
"web-types": "vue-docgen-web-types",
"build": "yarn generate-index && yarn bundle && yarn copy && yarn web-types",
"lint": "vue-cli-service lint",
"release": "shipjs prepare",
"storybook": "start-storybook -p 6006 -c .storybook",
"build-storybook": "build-storybook",
"chromatic": "npx chromatic --project-token",
"deploy-storybook": "storybook-to-ghpages",
"test": "jest",
"test:watchAll": "jest --watchAll",
"test:coverage": "jest --coverage",
"make-prop-tags": "vue-int --input src/components --output dist --recursive",
"deploy": "yarn build && yarn release"
},
"dependencies": {
"@storybook/storybook-deployer": "^2.8.7",
"body-scroll-lock": "^4.0.0-beta.0",
"core-js": "^3.6.5",
"swiper": "5.x",
"v-tooltip": "^2.0.3",
"vue": "^2.6.11",
"vue-awesome-swiper": "^4.1.1",
"vue-linkify": "^1.0.1",
"vue-pagination-2": "^3.0.91",
"vue-svg-loader": "^0.16.0",
"vue2-datepicker": "^3.8.2"
},
"devDependencies": {
"@storybook/addon-docs": "^6.0.22",
"@storybook/addon-viewport": "^6.0.26",
"@storybook/vue": "^6.0.21",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/test-utils": "^1.1.0",
"autoprefixer": "^10.0.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"chromatic": "^5.2.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.3.0",
"jest": "^26.6.1",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "^10.4.2",
"postcss": "^8.4.14",
"postcss-loader": "^4.0.4",
"prettier": "^2.1.2",
"sass": "^1.57.1",
"sass-loader": "^10.1.1",
"shipjs": "0.21.1",
"vue-docgen-web-types": "^0.1.7",
"vue-intellisense": "^1.0.1",
"vue-jest": "^3.0.7",
"vue-styleguidist": "^4.41.2",
"vue-template-compiler": "^2.6.11"
},
"files": [
"dist/*",
"src/plugins/*"
],
"browserslist": [
"last 2 version",
"> 5% in KR",
"IE >= 11",
"iOS >= 11"
],
"lint-staged": {
"*.{js,vue}": "vue-cli-service lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"web-types": "dist/web-types.json"
}