-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
115 lines (115 loc) · 3.3 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
111
112
113
114
115
{
"name": "@soramitsu-ui/ui-vue2",
"version": "1.1.6",
"private": false,
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"author": "Stefan Popov <[email protected]>",
"main": "./lib/index.js",
"module": "./lib/index.js",
"unpkg": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && rollup -c ./build/rollup.config.js",
"test:unit": "vue-cli-service test:unit --coverage",
"test:all": "yarn test:unit --coverage",
"lint": "vue-cli-service lint",
"storybook:build": "vue-cli-service storybook:build -c config/storybook",
"storybook:serve": "vue-cli-service storybook:serve -p 6006 -c config/storybook"
},
"dependencies": {
"core-js": "^3.26.1",
"element-resize-detector": "^1.2.4",
"element-ui": "^2.15.12",
"lodash": "^4.17.21",
"throttle-debounce": "^1.0.1",
"v-jsoneditor": "^1.4.5",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6",
"vue-i18n": "^8.28.2",
"vue-property-decorator": "^9.1.2",
"vuex": "^3.6.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@storybook/addon-a11y": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-storysource": "6.5.16",
"@storybook/builder-webpack5": "6.5.16",
"@storybook/core-server": "6.5.16",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/theming": "6.5.16",
"@storybook/vue": "6.5.16",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.190",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vue/cli-plugin-babel": "5.0.8",
"@vue/cli-plugin-eslint": "5.0.8",
"@vue/cli-plugin-typescript": "5.0.8",
"@vue/cli-plugin-unit-jest": "5.0.8",
"@vue/cli-service": "5.0.8",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.2.2",
"@vue/vue2-jest": "27.0.0-alpha.2",
"eslint": "^7.29.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.20.0",
"jest": "^27.2.2",
"lint-staged": "^9.5.0",
"postcss": "^8.2.13",
"rollup": "2.78.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^1.1.0",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-typescript2": "^0.25.2",
"rollup-plugin-vue": "^5.1.4",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"storybook-vue-router": "^1.0.7",
"ts-jest": "^27.0.5",
"typescript": "~4.4.4",
"vue-cli-plugin-storybook": "~1.2.2",
"vue-router": "^3.3.4",
"vue-template-compiler": "^2.6.14"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"files": [
"lib/*",
"*.json",
"*.js"
],
"resolutions": {
"react": "16.14.0",
"react-dom": "16.14.0"
},
"sideEffects": false,
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}